猿问

nodejs搭建服务器无法本地访问

用nodejs搭建了服务器,命令窗口显示搭建成功了,但是浏览器无法访问,请问是怎么回事?

var http = require('http');

var serv = http.createServer(function(req, res) {

console.log('有人进来了');

res.writeHeader(200, {    'content-type' : 'text/html;charset="utf-8"'
});

res.writeHeader(404, {    'content-type' : 'text/html;charset="utf-8"'
});

res.write('你要访问的页面资源不存在!');
res.end();

console.log(req);

}).listen(3000);

https://img1.mukewang.com/5c8f9ffb00017cc006740456.jpg


达令说
浏览 2980回答 2
2回答

开满天机

res.end('hello world')

慕容3067478

命令窗口显示搭建成功,这个是你直接打印的,打印开启成功要在listen的回掉函数里面serv.listen(3000, function () {   console.log('服务器开启成功---'); });然后试试其他端口,或者用localhost试试
随时随地看视频慕课网APP

相关分类

CSS3
我要回答