1)我在 ng-init 中初始化了变量,例如-
ng-init="password='Mightybear'";
2)我想从 .run 方法访问它。例如 -
anguar.module("ngApp", [])
.run(function() {
//Access password here
});
在我尝试过但没有工作的情况下 -
1) angular.module("ngApp", [])
.run(function($rootScope) {
console.log($rootScope.password) //undefined!!!
});
2) angular.module("ngApp", [])
.run(function($rootScope, $timeout) {
$(timeout(function() {
console.log($rootScope.password) //undefined!!!
});
});