我已经将ngRoute注入到我的角度应用程序中,并且当路径只有一个深度时路由工作,即。只有一个斜杠。
app.js中的:
app.config(['$routeProvider', function($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'login.html',
controller: 'LoginCtrl'
})
.when('/guestlist', {
templateUrl: 'guestlist.html',
controller: 'guestListCtrl'
})
.when('/event/apply', {
templateUrl: 'apply-to-event.html',
controller: 'EventCtrl'
})
.when('/event/confirmation', {
templateUrl: 'apply-to-event-confirmation.html',
controller: 'EventCtrl'
})
.when('/event', {
templateUrl: 'event.html',
controller: 'EventCtrl'
})
.otherwise({ redirectTo: '/' });
}]);
不起作用的路线为/event/apply
和/event/confirmation
,它们直接转到/
。但是,/event
和/guestlist
可以正常工作。
非常感谢任何想法,