Ionic頁面加載前 ionic頁面加載完成 ionic頁面銷燬執行的事件

ionic 中$ionicView.beforeEnter(頁面剛加載前)  $ionicView.afterEnter  (頁面加載完成) $destroy(頁面銷燬) 廣播事件 

//ionic controller剛加載執行的廣播通知方法
  1. $scope.$on('$ionicView.beforeEnter', function() {  
  2.             
  3.   console.log('beforeEnter'); 
  4. });   
複製代碼


//ionic controller所有加載完成 執行的廣播通知方法 (數據所有請求完成)

  1. $scope.$on('$ionicView.afterEnter', function() {  
  2.                 console.log('afterEnter');  
  3. }, false);  
複製代碼



//ionic controller全頁面銷燬 執行的廣播通知方法 

  1. $scope.$on('$destroy',function(){            
  2. console.log('$destroy');           
  3.   $rootScope.hideTabs = ' ';
  4. })   
相關文章
相關標籤/搜索