如何解决使用节点JS重定向时,路径必须是绝对路径或将根目录指定为res.sendFile
我已经尝试过其他问题的解决方案,但我无法正常工作。 基本上,我有一个服务器文件夹和一个客户端文件夹。以下代码位于服务器文件的app.js文件中,而index.html位于客户端文件夹中。
app.get('/',(req,res) => {
res.sendFile('../client/index.html')
});
但是,它不起作用,它说路径必须是绝对的,这就是为什么它不起作用的原因。 ../返回服务器文件夹,然后进入客户端文件夹并找到index.html。我已经尝试过client / index.html,只是index.html等,什么都没用。
解决方法
您可以使用类似的方法,并且效果很好;)
const path = require('path');
const express = require('express');
const app = express();
const port = 3000;
app.use(express.static(path.join(__dirname,'..','client')));
app.get('/',(req,res) => {
res.sendFile(path.join(__dirname,'client/index.html'));
})
app.listen(port,() => {
console.log(`Example app listening at http://localhost:${port}`);
});
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。