我正在使用在ubuntu linux上运行的最新v0.6.1
var http = require('http');
var server = http.createServer(function(request, response) {
request.on('data', function(chunk) {
console.log("******* got data ********");
});
request.on('end', function() {
console.log('on end');
});
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
});
server.listen(1337, "localhost");
我的结束活动很好,但是从未收到过数据事件。
答案 0 :(得分:1)
没关系..
数据事件仅在请求具有正文时触发。像GET这样的简单请求没有正文,因此不会发出数据事件。