我已经尝试过其他问题的解决方案,但我无法正常工作。 基本上,我有一个服务器文件夹和一个客户端文件夹。以下代码位于服务器文件的app.js文件中,而index.html位于客户端文件夹中。
app.get('/', (req, res) => {
res.sendFile('../client/index.html')
});
但是,它不起作用,它说路径必须是绝对的,这就是为什么它不起作用的原因。 ../返回服务器文件夹,然后进入客户端文件夹并找到index.html。我已经尝试过client / index.html,只是index.html等,什么都没用。
答案 0 :(得分:0)
您可以使用类似的方法,并且效果很好;)
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}`);
});