新增至node.js並且正在遵循下面鏈接中的基本教程。 https://www.tutorialspoint.com/nodejs/nodejs_web_module.htmNode.JS託管基本網頁錯誤:ENOENT
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完全相同的訊息。 後來,當我嘗試與
node server.js
沒有錯誤消息顯示了運行它,但是當我試圖訪問我的瀏覽器的頁面不連接並在控制檯中的錯誤出現。
任何幫助將不勝感激。
Server running at http://127.0.0.1:8081/
Request for/received.
{ Error: ENOENT: no such file or directory, open '' errno: -2, code: 'ENOENT', syscall: 'open', path: '' }
您是否使用了教程'http://127.0.0.1:8081/index.htm'中指定的url?特別是最後的'index.htm'部分。 – Sirko
你必須在你的問題中包含相關的代碼,而不是鏈接到外國網站。 –