是否可以基于具有角度的URL加载视图?

时间:2015-06-28 05:02:33

标签: angularjs angularjs-ng-route

我希望能够让用户转到www.myurl.com/#/login并转到指定的视图。如果它们在特定视图上,则相同,如果它们刷新,我希望它们再次被带到同一视图。但是目前无论什么扩展,它总是会带你到启动的主页。我的代码中是否可能存在错误,或者角度路由的行为不是那样?

fcApp.config(function ($routeProvider){
$routeProvider
.when('/',
{
    templateUrl: 'html/frontPage.html'
})
.when('/login',
{
    templateUrl: 'html/frontPage.html'
})
.when('/home',
{
    templateUrl: 'html/home.html'
})
.otherwise({redirectTo: '/home'});
});

0 个答案:

没有答案