NodeJS / ExpressJS在1个流中发送大量数据的响应

时间:2013-07-12 19:05:29

标签: node.js mongodb angularjs express xmlhttprequest

我正在使用原生mongo rest api对应用程序进行原型设计,其中Node返回约400K的json。我使用以下内容来请求mongo的原生api并返回结果:

http.request(options, function(req)
  {
    req.on('data', function(data)
      {
console.log(data,data.rows);
        response.send( 200, data );
      }
    );
  }
)
.on('error', function(error)
  {
console.log('error\t',error);
    response.send(500, error);
  }
)
.end();

当我通过curl点击http://localhost:8001/api/testdata时,响应是正确的(从console.log输出到Node的控制台以及curl接收的内容)。但是当我在我的应用程序中通过ajax点击它时,流被...中断,甚至data输出到Node的控制台(终端)是奇数:它有多个EOF,网络> chrome的开发工具中的调用响应在第一个EOF结束。

另一件奇怪的事:data看起来像:

{
    "offset": 0,
    "rows": [ … ]
}

但是在Node和客户端(角度)中都不能引用data.rows(它返回undefined)。 typeof data会返回[object Object]

编辑 curl和angular的请求标头(由Node报告)是:

req.headers: {
  'x-action': '',
  'x-ns': 'test.headends',
  'content-type': 'text/plain;charset=utf-8',
  connection: 'close',
  'content-length': '419585'
}

编辑我直接检查了角度和卷曲中的响应标头(而不是来自Node),发现存在分歧(来自curl和angular的相同输出直接而不是来自节点):

access-control-allow-headers: "Origin, X-Requested-With, Content-Type, Accept"
access-control-allow-methods: "OPTIONS,GET,POST,PUT,DELETE"
access-control-allow-origin: "*"
connection: "keep-alive"
content-length: "65401" // <---------------- too small!
content-type: "application/octet-stream"
//             ^-- if i force "application/json"
// with response.json() instead of response.send() in Node,
// the client displays octets (and it takes 8s instead of 0s)
date: "Mon, 15 Jul 2013 18:36:50 GMT"
etag: ""-207110537""
x-powered-by: "Express"

1 个答案:

答案 0 :(得分:10)

Node的http.request()返回chunks中的数据用于流式传输(如果他们明确说明这一点会很好)。因此,有必要将每个块写入Express的响应主体listen for the end of the http request(实际上没有记录),然后调用response.end()来实际完成响应。

var req = http.request(options, function(res)
  {
    res.on( 'data', function(chunk) { response.write(chunk); } );
    res.on( 'end', function() { response.end(); } );
  }
);
req.on('error', function(error) { … });
req.end();

response是Express的响应,初始客户端请求(curl或angular的ajax调用)。