我希望能够让用户转到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'});
});