1) ng-init Eg で初期化された変数があります -
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!!!
});
});