无法从本地网络中的其他设备访问在mac上运行的http服务器

时间:2017-05-20 17:33:08

标签: javascript node.js http server

我使用正在侦听端口8081的节点js创建了一个http服务器(在我的mac机器上)。我无法使用本地IP地址和端口从其他设备(例如我的手机)访问此服务器。我的笔记本电脑和手机都在同一个本地网络(同一子网)。 如何在手机上访问我的服务器。

以下是我的代码段。

var http = require("http");
http.createServer(function (request, response) {
   // Send the HTTP header 
   // HTTP Status: 200 : OK
   // Content Type: text/plain
   response.writeHead(200, {'Content-Type': 'text/plain'});
   
   // Send the response body as "Hello World"
   response.end('Hello World\n');
}).listen(8081);

2 个答案:

答案 0 :(得分:0)

要从另一台设备访问localhost,您必须在互联网上公开您的端口,从而创建一个http隧道。检查我前一段时间给出的答案:Node.js app from localhost to the web

答案 1 :(得分:0)

您需要找出Mac连接的IP地址示例192.1168.43.23,然后在该IP上托管您的代码http.createServer().listen(8081, 192.168.43.23);

然后在您的移动浏览器中打开网址192.168.43.23:8081,

这将解决问题