有没有一种方法可以始终显示加载程序或在我调用它时使其保持静止?
我在创建加载程序的地方提供了公共服务,因此我可以随时在任何页面上进行注入和访问。
这是我的代码:
public loader = this.loadingController.create({
spinner: 'crescent',
duration: 5000,
message: 'Please wait...',
translucent: true,
cssClass: 'custom-class custom-loading'
});
public async loaderPresent() {
await this.loader.then((overlay)=>{
overlay.present();
})
}
public async loaderDismiss() {
await this.loader.then((overlay)=>{
overlay.dismiss();
})
}
但是问题是: 以编程方式更改页面后,加载程序不会停留。
我要实现的目标是: 加载程序是绝对的,它涵盖了我的应用程序下发生的所有自动化过程。
其他信息: 我有一个inAppBrowser,它涵盖了加载屏幕。
答案 0 :(得分:0)
离子4
portAudio status - output underflow
ionic 3
$_POST = array(
'a' => '11',
'b' => 11,
'c' => 11,
'd' => null,
'e' => null,
);
$to_delete = array(0 => false);
print_r(array_diff($_POST, $to_delete));