gpt4 book ai didi

javascript - 为什么我的 NodeJS Web 服务器不从我的目录中获取文件?

转载 作者:行者123 更新时间:2023-11-28 19:02:10 24 4
gpt4 key购买 nike

我创建了一个 BasicWebServer.js 文件,该文件位于文件夹 portfolio-website 中,该文件夹包含以下文件:index.htmBasicWebServer.jscss/style.css

我在BasicWebServer.js文件中放入的代码如下:

var http = require('http'),
fs = require('fs'),
path = require('path'),
host = '127.0.0.1',
port = '9000';

var mimes = {
".htm" : "text/html",
".css" : "text/css",
".js" : "text/javascript",
".gif" : "image/gif",
".jpg" : "image/jpeg",
".png" : "image/png"
}

var server = http.createServer(function(req, res){
var filepath = (req.url === '/') ? ('./index.htm') : ('.' + req.url);
var contentType = mimes[path.extname(filepath)];
// Check to see if the file exists
fs.exists(filepath, function(file_exists){
if(file_exists){
// Read and Serve
fs.readFile(filepath, function(error, content){
if(error){
res.writeHead(500);
res.end();
} else{
res.writeHead(200, { 'Content-Type' : contentType});
res.end(content, 'utf-8');
}
})
} else {
res.writeHead(404);
res.end("Sorry we could not find the file you requested!");
}
})
res.writeHead(200, {'content-type' : 'text/html'});
res.end('<h1>Hello World!</h1>');
}).listen(port, host, function(){
console.log('Server Running on http://' + host + ':' + port);
});

更新1第 1 部分)

我删除了两行:

res.writeHead(200, {'content-type' : 'text/html'});
res.end('<h1>Hello World!</h1>');

当我刷新页面时,我得到:

抱歉,我们找不到您请求的文件!

第 2 部分)我也尝试过这样做:

var http = require('http'),
fs = require('fs'),
path = require('path'),
host = '127.0.0.1',
port = '9000';

var mimes = {
".htm" : "text/html",
".css" : "text/css",
".js" : "text/javascript",
".gif" : "image/gif",
".jpg" : "image/jpeg",
".png" : "image/png"
}

var server = http.createServer(function (req, res) {
var filepath = (req.url === '/') ? ('./index.htm') : ('.' + req.url);
var contentType = mimes[path.extname(filepath)];
// Check to see if the file exists
fs.exists(filepath, function(file_exists){
// if(file_exists){
// // Read and Serve
// fs.readFile(filepath, function(error, content){
// if(error){
// res.writeHead(500);
// res.end();
// } else{
// res.writeHead(200, { 'Content-Type' : contentType});
// res.end(content, 'utf-8');
// }
// })
res.writeHead(200, {'Content-Type' : contentType});
var streamFile = fs.createReadStream(filepath).pipe(res);

streamFile.on('error', function() {
res.writeHead(500);
res.end();
})
} else {
res.writeHead(404);
res.end("Sorry we could not find the file you requested!");
}
})
}).listen(port, host, function(){
console.log('Server Running on http://' + host + ':' + port);
});

这会产生以下错误:

SyntaxError: Unexpected token else
at exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:443:25)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3

最佳答案

这两行:

res.writeHead(200, {'content-type' : 'text/html'});
res.end('<h1>Hello World!</h1>');

每次都会被执行,并且它们会在您的代码有机会读取文件之前被执行。请记住,fs.exists()fs.readFile() 是异步的,因此它们的响应是在其余代码执行之后发出的。

如果我删除这两行,您的代码就会开始工作,所以基本上您在其他代码有机会实际读取文件并发送它之前就完成了这两行的响应。

<小时/>

仅供引用,按照您的使用方式使用 fs.exists() 被认为是一种反模式。如果找不到文件,您可以使用 fs.readFile() 并适本地处理错误。除了没有并发问题之外,这还少了一项文件操作。

关于javascript - 为什么我的 NodeJS Web 服务器不从我的目录中获取文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32322107/

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