重新加载角度应用程序会引发错误

时间:2018-10-26 11:26:06

标签: node.js angular express

在我的角度应用程序中,我想从URL中删除#,我已经在app.js中这样设置了

$locationProvider.html5Mode(true); 

在index.html页面中添加了<base href="/"/>

在我的server.js中,我这样配置

app.get('*', function(req, res,next){
      res.sendFile(path.join(__dirname, 'public/index.html'));
    });

运行时正确加载了应用程序,但重新加载了应用程序 它将在所有API调用中返回index.html页面内容

请帮助解决此问题

0 个答案:

没有答案