• 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. })   
  • 相关阅读:
    Tarjan专题
    Catalan数
    状压DP
    威尔逊定理证明:
    【fzoj 2376】「POJ2503」Babelfish
    Android 源码
    Android实现推送方式解决方案
    Android apk 签名
    圆角的实现
    Android 资源
  • 原文地址:https://www.cnblogs.com/jayruan/p/5568627.html
Copyright © 2020-2023  润新知