ノードで次のプログラムを作成した場合:
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);
次に、コンソールに2回表示された状態でサーバーにアクセスします。単一のHTTPリクエストが原因でこれが2回実行される理由がhttp://xxx.xx.xxx.xx:35010
わかりrequest ended
ません。