如果我在节点中编写以下程序:
http.createServer(function (req, res) {
if( req.method == 'GET' ) {
var body = ''; req.on('data', function(data) { body += data });
req.on('end', function() {
console.log('request ended')
});
}
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('142\n');
}).listen(3500);
然后用http://xxx.xx.xxx.xx:35010
我在控制台上看到request ended
两次来访问服务器——我不确定为什么单个 HTTP 请求会导致它执行两次。