我遇到了生成器 - 角 - 全栈 - 自耕头骨架的问题。我无法弄清楚为基本URL(http://localhost:9001)提供index.html文件的内容。我可以找到的唯一可能的路线粘贴在下面。如果我添加一个console.log()或使用node-inspector设置断点,它似乎不会被调用。我甚至评论了res.sendFile行,index.html仍在提供。
app.route('/*')
.get(function(req, res) {
res.sendFile(path.resolve(app.get('appPath') + '/index.html'));
});
我想在提供index.html文件的任何内容中添加一些中间件。
答案 0 :(得分:0)
它位于下一个app.use行。