如何完全调用index.html(前端Angular)?
在教程中,据说通过在route.js中使用以下路由之一,前端被调用
app.get('*', function(req, res) {
res.sendfile('./public/index.html');
});
----------或-------------------
app.get('*', function(req, res) {
res.sendfile('__dirname + '/public/index.html');
});
但即使在删除该路由后,index.html也会被打开(或)如果我在路由和html文件中将index.html重命名为index1.html,则显示错误。
答案 0 :(得分:0)
您是否在公共文件夹中创建了一个文件index1.html?如果是,请使用
Collection<Enum<E>>
OR
res.sendfile('public/index1.html');
渲染index1.html。
注意:不推荐使用 sendfile。