【发布时间】:2018-04-05 23:27:36
【问题描述】:
以下是我的文件夹树。
lifecoding
|login2
|index.html
|css
style.css
|js
index.js
我正在使用 express 并且所有需要的模块都已完全安装。 我设置了静态路径,如下,但它不起作用并一直说找不到文件'index.html'。
我之所以使用静态路径是为了很好地应用 css 和 js 文件。 给我一些建议,谢谢。
app.get('/auth/login', function(req, res){
res.send(output);*/
app.use(express.static(path.join(__dirname + '/login2')));
res.sendFile('/index.html');
});
【问题讨论】:
标签: javascript html node.js express