gpt4 book ai didi

javascript - node.js 脚本可以在命令行下运行,但不能在浏览器上运行?

转载 作者:太空宇宙 更新时间:2023-11-04 09:49:37 25 4
gpt4 key购买 nike

我启动了运行 ubuntu 12.04 的亚马逊 ec2 实例

然后我按照说明从这里安装 node.js http://howtonode.org/how-to-install-nodejs

sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core

git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install

然后我使用示例代码制作hello.js

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

然后我运行 hello.js

/var/www$ node hello.js
Server running at http://127.0.0.1:8124/

但是,当我尝试使用 http://ec2-***.compute-1.amazonaws.com:8124/ 从 url 访问它时,我从我的浏览器。

关于如何让它显示在浏览器中的任何建议?

编辑改了上面这行代码还是遇到这个问题

}).listen(8124, "127.0.0.1");

对此

}).listen(8124);

最佳答案

127.0.0.1 是环回地址。只有主机可以访问它。如果您想监听任何可用的 IP,请不要指定该参数。否则,请指定您要收听的真实 IP。

关于javascript - node.js 脚本可以在命令行下运行,但不能在浏览器上运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12549624/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com