我发布了一个相对较大的(50K)文本文件:
curl -H "Content-Type:text/plain" -d @system.log http://localhost:8888/
使用代理进行测试,我可以看到文件的全部内容正在发布。
但是 Express.JS 在标题中看到 100:Continue 和空白正文。我有 :
app.use(express.bodyParser());
启用,顺便说一句。以下是标题:
{ 'user-agent': 'curl/7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5',
host: 'localhost:8888',
accept: '*/*',
'content-type': 'text/plain',
'content-length': '55909',
expect: '100-continue' }
req.body 为空:
{}
如何查看 Express.JS 中发布的所有数据?