5

我正在使用本机 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();

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

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

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

但是在节点和客户端(角度)中,我都不能引用 data.rows (它返回未定义)。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'
}

编辑我直接检查了angular和curl中的响应标头(而不是从节点),并且存在分歧(直接从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"
4

1 回答 1

11

Node 的 http.request() 以的形式返回数据以进行流式传输(如果他们明确说明这一点会很好)。因此,有必要将每个块写入 Express 响应的主体,监听 http 请求的结束(没有真正记录),然后调用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();

responseExpress 的响应是初始客户端请求(curl 或 angular 的 ajax 调用)在哪里。

于 2013-07-15T21:41:03.163 回答