Scotch-io / node-todo app

时间:2016-07-20 09:27:54

标签: javascript angularjs node.js express

如何完全调用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,则显示错误。

1 个答案:

答案 0 :(得分:0)

您是否在公共文件夹中创建了一个文件index1.html?如果是,请使用

Collection<Enum<E>>

OR

 res.sendfile('public/index1.html');

渲染index1.html。

注意:不推荐使用 sendfile。