当所有图像和内容都加载时,Ionic会执行操作

时间:2016-03-08 17:15:29

标签: javascript ionic-framework

创建一个Ionic应用程序,但需要一种方法来显示加载微调器,直到所有内容都被100%加载。

我目前在我的控制器中:

$ionicLoading.show();

然后我做了一个API调用,并将在promise中删除离子加载器。但是,图像仍在加载等。

有没有办法可以等到所有东西都100%加载然后执行操作?然后,如果可能的话,一种方法可以影响每条路线。

1 个答案:

答案 0 :(得分:0)

我像这样使用它,

$ionicLoading.show();

$ionicPlatform.ready(function() {

    /* insert your code here */

    $ionicLoading.hide().then(function(){
         console.log("The loading indicator is now hidden");
    });
    $state.go("tab.dash");
});