我刚刚开始研究 Node.js。我在http://net.tutsplus.com/tutorials/javascript-ajax/node-js-for-beginners/看到了一个教程,我正在尝试执行他作为示例给出的脚本,但它不起作用除非我在“结束”事件中注释掉监听器。
var http = require("http");
http.createServer(function (request, response) {
// request.on("end", function () {
response.writeHead(200, {
'Content-Type': 'text/plain'
});
response.end('Hello HTTP!');
// });
//request.end();
}).listen(8080);
如果我在请求的“结束”上评论监听器,上面的代码工作正常,但如果我取消评论,那么它就不能正常工作。有人可以在这里帮助我吗?
谢谢,哈沙。