在 Angular 的运行块中,我在 $rootScope 上设置了一个属性,但是当控制器执行时,$rootScope 上不存在该属性。
当应用程序启动时,在调试器中我看到“adal:loginSuccess”处理程序被执行并且 $rootScope.isAdmin 确实设置为“true”,但是当控制器开始执行 $rootScope.isAdmin 时 $rootScope 上不存在。为什么?下面是我的代码
应用程序.js
var main = angular.module('mymodule', [
'ngAnimate','ngRoute','Mycontrollers','AdalAngular'...
]);
main.config(['$httpProvider','adalAuthenticationServiceProvider', function ($httpProvider,adalProvider) {
adalProvider.init(
{
// config Azure Client ID Here
},
$httpProvider
);
}]);
main.run(["$rootScope", "$state", "API", "usSpinnerService",
function ($rootScope, $state, API, usSpinnerService,) {
$rootScope.$on("adal:loginSuccess", function () {
$rootScope.isAdmin = user.isAdmin;
});
}]);
控制器.js
angular.module('Mycontrollers', [])
.controller('HeaderCtrl', ['$rootScope','$scope', 'adalAuthenticationService', function ($rootScope, $scope, adalAuthenticationService) {
//$rootScope.isAdmin is set in angular's run block above
//however $rootScope.isAdmin does not exists here, WHY?????
}])