ionic 中$ionicView.beforeEnter(頁面剛加載前) $ionicView.afterEnter (頁面加載完成) $destroy(頁面銷燬) 廣播事件
//ionic controller剛加載執行的廣播通知方法
- $scope.$on('$ionicView.beforeEnter', function() {
-
- console.log('beforeEnter');
- });
複製代碼
//ionic controller所有加載完成 執行的廣播通知方法 (數據所有請求完成)
- $scope.$on('$ionicView.afterEnter', function() {
- console.log('afterEnter');
- }, false);
複製代碼
//ionic controller全頁面銷燬 執行的廣播通知方法
- $scope.$on('$destroy',function(){
- console.log('$destroy');
- $rootScope.hideTabs = ' ';
- })
|