//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 = ' ';
- })
