var http = require('http');
http.createServer(function (req, res) {
///console.log(req);
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
console.log("Inside the handler function");
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
为什么上面的Node.js代码打印出console.log(" Inside ...")消息两次?当服务器从客户端(浏览器)收到一个请求时,我希望它打印一次。
感谢。
答案 0 :(得分:0)
Chrome会对favicon提出额外请求。 Mozilla和Safari不会......