如果用户未登录,我正在尝试以这样的方式配置我的路由以重定向到登录页面。这是我的代码:
angular.module('witBiz.services', []);
angular.module('witBiz.controllers', ['witBiz.services']);
var witBizModule = angular.module('witBiz', ['ngRoute' , 'witBiz.controllers', 'witBiz.services' ]);
witBizModule.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/login', {templateUrl: 'resources/views/login.html', controller: 'LoginController'});
$routeProvider.when('/index', {templateUrl: 'resources/views/index.html', controller: 'IndexController'});
$routeProvider.otherwise({redirectTo: 'resources/views/index.html'});
}])
.run(['$rootScope', 'checkLogin', function($rootScope, checkLogin ,$routeProvider ) {
$rootScope.$on('$routeChangeSuccess', function () {
if (checkLogin())
$location.url("/index");
})
}])
.factory('checkLogin', function(){
return function() {
//perform real logic here
return true;
}
})
基本上我在这里声明模块和服务。现在的问题是 $location 没有定义所以我得到错误。我试图像这样将 $location 作为依赖注入,但我得到了未定义的注入(injpt):
.run(['$rootScope', 'checkLogin', '$location', function($rootScope, checkLogin ,$location) {
$rootScope.$on('$routeChangeSuccess', function () {
if (checkLogin())
$location.url("/ciao");
})
}])
所以我想知道如何在我的“运行”方法中使用内置的 $location 服务......为什么我可以将它作为 $rootScope 或 checkLogin 的依赖项注入?!
我正在使用角度 1.2.0 rc2。
谢谢