我正在使用本机 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"