0

我想使用pivotal-nodenode.js 的模块返回完成的关键故事数组。

app.get('/delivered_stories', function(request, response) {             
  pivotal.useToken("my_token");
  pivotal.getProjects(function (err, data) {
    var project_ids = data.project.map(function(x) { return parseInt(x.id); });
    console.log('Retrived project ids: '.blue + project_ids);

    project_ids.forEach(function(id) {
      pivotal.getStories(id, { filter: "state:finished" }, function(err, story) {
        response.send(story);
      });
    });
    response.end(); // End the JSON array and response.
  });
});

我做错了什么?以及如何解决?我收到一个错误:

http.js:708
    throw new Error('Can\'t set headers after they are sent.');
          ^
Error: Can't set headers after they are sent.

完整代码:https ://gist.github.com/regedarek/30b2f35e92a7f98f4e20

4

1 回答 1

2

pivotal.getStories()异步的。

它的回调(因此)将在您的其余代码(包括)之后response.send()运行一段时间response.end()

事实上,你根本不应该打电话response.end()response.send()为你做。

您也不能response.send()多次调用;您需要将所有结果组合到一个数组中并发送。
这并不容易做到;考虑使用 async.js 或 Promise。

于 2013-03-29T14:22:20.907 回答