1
我有一個比較大的(50K)的文本文件被張貼:如何處理get完成的POST請求(如果100):在Express.js中繼續?
curl -H "Content-Type:text/plain" -d @system.log http://localhost:8888/
測試使用的是代理,我可以看到該文件的全部內容被公佈。
但Express.JS看到100:在標題中繼續,並留下一個空白的正文。我有:
app.use(express.bodyParser());
啓用,BTW。這裏是頭:
{ '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?
這是正確的。使用數據事件聽起來很合理,我還在http://stackoverflow.com/questions/12497358/handling-text-plain-in-express-3上發佈了另一個問題:在Express中處理Contect-Type(通過Connect )? – mikemaccana