当前位置 : 主页 > 网页制作 > Nodejs >

node.js – 在我的浏览器中获取服务器禁止错误

来源:互联网 收集:自由互联 发布时间:2021-06-16
我刚开始探索node.js.在我的 Windows服务器上安装了msi文件.我的代码在命令窗口中返回我预期的输出 var http = require("http");http.createServer(function (request, response) {// Send the HTTP header // HTTP Stat
我刚开始探索node.js.在我的 Windows服务器上安装了msi文件.我的代码在命令窗口中返回我预期的输出

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);

// Console will print the message
console.log('Server running at `http://127.0.0.1:8081/`');

但是当我在浏览器中键入http://127.0.0.1:8081/时,我没有得到任何输出.当我看到控制台我得到低于错误

Failed to load resource: the server responded with a status of 403 (Forbidden)

我错了怎么解决?我关注这个link

可能就像我目前的PC,你的必须运行迈克菲或其他一些程序已经在使用端口 8081,你有两个选择:

>停止McAfee或该端口上运行的其他程序>侦听节点服务器上的其他端口

网友评论