铁路由器服务器端路由的回调不工作(Iron Router Server Side Routing c

2019-10-19 01:09发布

我对IronRouter,为什么READFILE回调执行被发送到客户端的响应更新。

Router.map(
  ()->
    this.route 'readFile',
      path: '/readFile'
      where: 'server'
      method: 'GET'
      action: ()->
        self = this
        fs.readFile '/tmp/a.txt', (err, data)->
          if err
            throw err
          console.log(data.toString())
          self.response.writeHead(200, {'Content-Type': 'text/plain'})
          self.response.end(data)
        console.log('response ...')

http.js:733
  W2049-12:04:26.781(8)? (STDERR)     throw new Error('Can\'t render headers after they are sent to the client.'
  W2049-12:04:26.781(8)? (STDERR)           ^
  W2049-12:04:26.782(8)? (STDERR) Error: Can't render headers after they are sent to the client.

但是,我用快递,像这样的工作。

exports.index = function(req, res){
  fs.readFile('/tmp/a.txt', function (err, data) {
    if (err) throw err;
    console.log(data.toString());
    res.send(200, data.toString());
  });
  console.log('response ...');
};

感谢@ChristianF @Tarang使用Meteor._wrapAsync或将来的所有工作。 当我使用自定义函数替换fs.readFile。 它以抛前。 我怀疑我的定义的函数有错误。 如下:

@getAccounts = (callback) ->
 query = "SELECT Id, Name, AccountNumber FROM Account"
 queryBySoql(query, (err, result)->
   if err
     return console.error(err)
   return callback(result)
)

我调用此链接:

# using Meteor
#data = Meteor._wrapAsync(getAccounts)()


#using Future
waiter = Future.wrap(getAccounts)()
data = waiter.wait()
this.response.writeHead 200, {'Content-Type': 'text/plain'}
this.response.end JSON.stringify(data)

感谢所有。

Answer 1:

就在今天,我挣扎,就此问题。 答案,在我看来,是流星(或至少铁路由器)不处理异步调用你所希望的方式。 该解决方案是包装异步调用成纤维,其是机制流星使用以保持同步的编程。

你的情况,试试这个(对不起,我不知道CoffeeScript的非常好):

var Future = Npm.require('fibers/future');
...
var waiter = Future.wrap(fs.readFile);
var data = waiter('/tmp/a.txt').wait();
response.writeHead(200, {'Content-Type': 'text/plain'})
response.end(data)

编辑寻址除了问题。

裹在未来的职能需要有一个回调作为具有(ERR,结果)签名的最后一个参数。 尝试这个:

@getAccounts = (callback) ->
 query = "SELECT Id, Name, AccountNumber FROM Account"
 queryBySoql(query, (err, result)->
   if err
     return console.error(err)
   return callback(err, result)
)


Answer 2:

你可以换你读文件请求的回调到相同的纤维。 它不会阻止其他请求&出来挺干净的。

readFile = Meteor_wrapAsync(fs.readFile.bind(fs))
data = readFile("/tmp/a.txt")

console.log data
@response.writeHead(200, {'Content-Type': 'text/plain'})
@response.end data
return


文章来源: Iron Router Server Side Routing callback doesn't work