我正在使用ionic2。我正在使用loadingController,例如,
this.loader = this.loadingCtrl.create({
content: "Please wait, creating new test...",
});
this.loader.present();
之后在某些功能中我使用this.loader.dismiss();
我想知道,在loader.dismiss之后,是否有任何方法可以检查加载程序是否存在,例如loader.present == true
谢谢
您有一个onDidDismiss()
函数。
您可以拥有一个布尔值集:
this.loader = this.loadingCtrl.create({
content: "Please wait, creating new test...",
});
let isShowingLoading:boolean=true;
this.loader.onDidDismiss(()=>isShowingLoading=false);
this.loader.present()
在此处检查API