使用AngularJSHTML 5模式重新加载页面会产生错误的GET请求我想为我的应用程序启用HTML 5模式。我已经为配置放置了以下代码,如下所示这里:return app.config(['$routeProvider','$locationProvider', function($routeProvider,$locationProvider) {
$locationProvider.html5Mode(true);
$locationProvider.hashPrefix = '!';
$routeProvider.when('/', {
templateUrl: '/views/index.html',
controller: 'indexCtrl'
});
$routeProvider.when('/about',{
templateUrl: '/views/about.html',
controller: 'AboutCtrl'
});如你所见,我用了$locationProvider.html5mode我更改了我在ng-href排除/#/.问题现在,我可以去localhost:9000/并查看索引页并导航到其他页面,如localhost:9000/about.但是,当我刷新localhost:9000/about一页。我得到以下输出:Cannot GET /about如果我看一下网络呼叫:Request URL:localhost:9000/aboutRequest Method:GET如果我第一次去localhost:9000/然后单击导航到/about我得到:Request URL:http://localhost:9000/views/about.html它完美地呈现了页面。当我刷新时,如何启用角获取正确的页面?
3 回答
慕桂英3389331
TA贡献2036条经验 获得超8个赞
使用 <base href="/index.html">
在索引页中 在我的节点/快速服务器中使用CATCH所有路由中间件,如下所示(将其放在路由器后面):
app.use(function(req, res) { res.sendfile(__dirname + '/Public/index.html');});
- 3 回答
- 0 关注
- 664 浏览
添加回答
举报
0/150
提交
取消