からの値iは$statechangeStart
と$stateChaneSuccess
MyApp.js
app.run(function ($rootScope) {
$rootScope.$on('$stateChangeStart', function (event, toState, toParams, fromState, fromParams, options) {
$scope.IsLoading = true;
})
$rootScope.$on('$stateChangeSuccess', function (event, toState, toParams, fromState, fromParams, options) {
$scope.IsLoading = False;
})
})
Home.js
///から値を取得できますかHelpmeしてください得ることができますここではどのように私は使用することができますIsLoading
あなたはあなたのアプリケーションの変更を反映するために** ** $のrootScopeを使用する必要があります。 –
は$ rootScopeを使用しないでください、それはあなた自身のプロバイダ – shaunhusain
を定義するために動作しますが、より良いでしょうuがplzの任意の例を述べ、それに取り組んで –