请求未重定向到登录页面。在此之前我使用 ui-router 然后将请求重定向到详细信息页面。然后我转向了ng-route。但是听到的问题是它没有路由到登录页面。
app.config(function($routeProvider){
$routeProvider
.when('/:category', {
templateUrl: "views/home.jsp",
controller:"recommendationController"
})
.when('/:allP', {
templateUrl: "views/home.jsp",
controller:"allProducts"
})
.when('/:category/:isbn',{
templateUrl:"views/details.jsp",
controller:"DetailsController"
})
.when('/contact', {
templateUrl: "views/contact.jsp"
})
.when('/login', {
templateUrl: "views/login.jsp",
controller:"LoginController"
})
.when('/signup', {
templateUrl: "views/signup.jsp"
})
.when('/resetPassword', {
templateUrl: "views/forget.jsp"
})
.otherwise({
redirectTo:"/:category"
})
});