要根据路径附加特定视图,我在 app.js 中使用了类似的内容:
angular.module('header', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/', {templateUrl: 'views/top-menu.html', controller: CheckLoggedInCtrl}).
when('/login/', {templateUrl: 'views/top-menu-login.html', controller: CheckLoggedInCtrl})
}]);
如何不依赖于路径对某些视图进行持续重定向?