0

我想在我的 Meteor 应用程序中接收带有 POST 请求的数据。有这个代码(服务器端):

__meteor_bootstrap__.app.stack.splice (0, 0, {
  route: '/input',
  handle: function(req, res, next) {

    req.on('error', function(err) {
      console.log('ERROR', err);
    });

    req.on('data', function(chunk) {
      console.log('CHUNK');
    });

    req.on('end', function() {
      console.log('END');
    });


    res.writeHead(200, {
      'Content-Type': 'text/plain',
    });
    res.write('GOT IT!');
    res.end();

  }.future(),

});

该代码不起作用,永远不会调用带有日志的回调。我试图将响应代码移动到end回调,但它没有帮助 - 唯一的变化是请求接收超时而不是响应。

我应该怎么办?

4

1 回答 1

1

您的代码无需future()致电即可为我工作。

于 2013-07-09T23:03:46.110 回答