javascript – 节点服务器正在运行但localhost拒绝连接

前端之家收集整理的这篇文章主要介绍了javascript – 节点服务器正在运行但localhost拒绝连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

尝试让最简单的节点服务器与浏览器交互,使用:

var http = require('http');


http.createServer(function(req,res){

  res.writeHead( 200,{ "content-Type" : 'text/plain' } )
  res.send('Hello world');

}).listen(1337,'192.168.1.2');

但是localhost不会这样做..

localhost refused to connect

那是IPv4地址.我在这里错过了什么吗?

最佳答案
使用0.0.0.0,它将同时适用于’192.168.1.2’和localhost.
原文链接:https://www.f2er.com/js/429141.html

猜你在找的JavaScript相关文章