簡體   English   中英

ionic 3 loadingcontroller啟用背景解散不起作用

[英]ionic 3 loadingcontroller enable backdrop dismiss not working

我已經使用以下代碼成功創建了一個加載器

presentLoading() {
    this.loadingCtrl.create({
      content: 'Please wait...',
      //duration: 3000,
      dismissOnPageChange: true,
      showBackdrop: true,
    }).present();
  }

但我無法將enableBackdropDismiss放置在代碼中的任何位置,我不知道將其放置在哪里以及如何使用它來關閉我的加載器

您可以像使用其他專有技術一樣使用它。 設置為true ,用戶可以通過點擊背景來取消加載。 如果要消除代碼中的加載,則需要創建一個變量來表示它:

presentLoading() {
    let loading = this.loadingCtrl.create({
      content: 'Please wait...',
      //duration: 3000,
      dismissOnPageChange: true,
      showBackdrop: true,
      enableBackdropDismiss: true
    }).present();
    //Compute, ajax call or what ever you want
    //Dismiss loading
    loading.dismiss();
  }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM