node.js 的新手,并在下面的链接中遵循基本教程。 https://www.tutorialspoint.com/nodejs/nodejs_web_module.htm
var http = require('http');
var fs = require('fs');
var url = require('url');
// Create a server
http.createServer( function (request, response) {
// Parse the request containing file name
var pathname = url.parse(request.url).pathname;
// Print the name of the file for which request is made.
console.log("Request for " + pathname + " received.");
// Read the requested file content from file system
fs.readFile(pathname.substr(1), function (err, data) {
if (err) {
console.log(err);
// HTTP Status: 404 : NOT FOUND
// Content Type: text/plain
response.writeHead(404, {'Content-Type': 'text/html'});
}else {
//Page found
// HTTP Status: 200 : OK
// Content Type: text/plain
response.writeHead(200, {'Content-Type': 'text/html'});
// Write the content of the file to response body
response.write(data.toString());
}
// Send the response body
response.end();
});
}).listen(8081);
// Console will print the message
console.log('Server running at http://127.0.0.1:8081/');
创建了 2 个文件 index.html 和 server.js 与帖子完全相同。然后当我尝试运行它时
节点服务器.js
没有显示错误消息,但是当我尝试在浏览器上访问该页面时,它无法连接,并且控制台中显示错误。
任何帮助将不胜感激。
服务器运行在http://127.0.0.1:8081/
请求/收到。
{ 错误:ENOENT:没有这样的文件或目录,打开'' errno:-2,代码:'ENOENT',系统调用:'open',路径:'' }