Ionic 页面跳转卡顿解决方法

在使用 Ionic 开发 hybrid App时,页面加载远程数据是必不可少的。但是,在转场过程中加载远程数据并渲染,会导致页面卡顿现象。

我们可以在页面完全进入之后在加载远程数据。这样,效果会好很多。
一般,我的 Ionic 应用会有一个 app controller 做为根controller,并且,在其中添加如下的监听事件:

app.controller('appCtrl', ['$scope', function($scope) {
    // ...

    /**
     * 监听页面载入完成,有一个转场时间,之后,做相应处理
     * @param e
     * @param state 当前页面的state
     */
    $scope.$on('$ionicView.afterEnter', function(e, state) {
        if (!state.fromCache) {
            var initForPage = state.stateName + '-init'; // xxx-init
            $scope.$broadcast(initForPage);
        }
    });

    // ...
}]);

我会在子controller中进行监听根controller的广播

app.controller('homeCtrl', ['$scope', function($scope){

    $scope.$on('xxx-init', function(){
        // 加载远程数据
    });
}]);

这样,会等到页面专场结束之后再加载数据并渲染,使页面不再产生卡顿现象。

你可能感兴趣的:(Ionic 页面跳转卡顿解决方法)