Prevent duplicate Toast messages in Ionic

后端 未结 2 485
北荒
北荒 2021-01-18 09:42

I have implemented toast using ToastController in my ionic2 project . Currently i am facing an issue with the duplicate toast

2条回答
  •  情歌与酒
    2021-01-18 10:01

    You can use a property on that page to know if a toast is being shown or not before showing a new one.

    Ionic 2/3

    import { ToastController, Toast } from 'ionic-angular';
    
    // ...
    
    private isToastVisible: boolean;
    
    constructor(private toastCtrl: ToastController) { }
    
    presentToast() {
      if(this.isToastVisible) {
        return;
      }
    
      this.isToastVisible = true;
    
      const toast: Toast = this.toastCtrl.create({
        message: 'User was added successfully',
        duration: 3000,
        position: 'top'
      });
    
      toast.onDidDismiss(() => {
        this.isToastVisible = false;
      });
    
      toast.present();
    }
    

    Ionic 4/5

    import { ToastController } from '@ionic/angular';
    
    // ...
    
    private isToastVisible: boolean;
    
    constructor(private toastCtrl: ToastController) { }
    
    presentToast() {
      if(this.isToastVisible) {
        return;
      }
    
      this.isToastVisible = true;
    
      this.toastCtrl.create({
        message: 'User was added successfully',
        duration: 3000,
        position: 'top'
      }).then((toast: HTMLIonToastElement) => {
    
        toast.onDidDismiss().then(() => {
          this.isToastVisible = false;
        });
    
        toast.present();
      })      
    }
    

提交回复
热议问题