猿问

NodeJs搭建 请问控制台显示http://127.0.0.1:1337/为什么在浏览器访问不到呢

var http = require('http');
http.createServer(function(req,res){
    res.writeHead(200,{'Content-Type':'text/plain'});
    res.end("Hello World\n");
}).listen(1370,'127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

http://img.mukewang.com/59546a8b000100bf07410441.jpg


呆呆呆
浏览 4578回答 4
4回答

呆呆呆

请问我刚刚将端口号改为8080就能访问了是为什么
随时随地看视频慕课网APP
我要回答