包括《Node入门》中的“hello word”的例子在内,所有的项目在node之后,页面一直处于请求状态,最终是请求超时。
http.createServer(function(request, response) { console.log(‘1’); }) 没有log的。
请问这是什么原因导致的?
15 回复
没有监听端口所致,正确的应该是
var http = require('http');
http.createServer(function(req,res){
console.log("1");
}).listen(3000);
var http = require("http");
http.createServer(function(request, response) { console.log(“1”); response.writeHead(200, {"Content-Type": "text/plain"}); response.write(“Hello World”); response.end(); }).listen(8888);
这样的,然后http://localhost:8888/ 标签一直在转 转啊转 没有log,页面也没有“hello word”
什么环境下呢? windows 还是linux 下?
转圈的时候,杀死node进程,是不是页面就果断跳500了?
http.listen(port,function(err){ // 这里捕获一下是否有异常 })