const http = require('http');
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('hello\n');
});
const port = 3000;
server.listen(port, () => {
console.log(`Sunucu çalışıyor: http://localhost:${port}`);
});
(node.js)当我在我的电脑上使用Google进行尝试时,屏幕上会出现“你好”的消息,但在我的手机上,它会显示“无法访问此网站”。为什么会发生这种情况,如果您没有时间回答,我可以在哪里了解更多信息?
1条答案
按热度按时间2exbekwf1#
首先,服务器只能从您的本地网络访问,但是,有几种方法可以让任何人都可以访问它,例如您可以使用ngrok下载它注册,并从CMD启动隧道