當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ToastController.create方法代碼示例

本文整理匯總了TypeScript中@ionic/angular.ToastController.create方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ToastController.create方法的具體用法?TypeScript ToastController.create怎麽用?TypeScript ToastController.create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@ionic/angular.ToastController的用法示例。


在下文中一共展示了ToastController.create方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: presentToast

 async presentToast(message: string) {
     const toast = await this.toastController.create({
         message: message,
         duration: 1000
     });
     toast.present();
 }
開發者ID:OscarOK,項目名稱:myMenu,代碼行數:7,代碼來源:add-node.page.ts

示例2: mensaje_no_encontrado

 async mensaje_no_encontrado() {
   const mensaje = await this.toastCtrl.create({
     message: 'Jugador no encontrado',
     duration: 2000,
   })
   mensaje.present();
 }
開發者ID:DiegoBinario,項目名稱:EPE2_APP,代碼行數:7,代碼來源:tab2.page.ts

示例3: clickMe

 async clickMe() {
   const toast = await this.toastController.create({
     closeButtonText: 'close dat toast',
     duration: 1000,
     message: 'Howdy ho toasty neighbor',
     position: 'bottom'
   });
   toast.present();
 }
開發者ID:GHernansanz,項目名稱:ionic,代碼行數:9,代碼來源:toast-page.component.ts

示例4: mostrar_calificacion_mala

  async mostrar_calificacion_mala() {
    const mensaje = await this.ToastCtrl.create(
      {
        message: "SEGUIREMOS TRANAJANDO PARA MEJORAR :c",
        duration: 2000,

      }
    );
    mensaje.present();
  }
開發者ID:DiegoBinario,項目名稱:EPE2_APP,代碼行數:10,代碼來源:acerca-de-pagina.page.ts

示例5: mostrar_calificacion_buena

  async mostrar_calificacion_buena() {
    const mensaje = await this.ToastCtrl.create(
      {
        message: "GRACIAS POR SU APOYO!!!",
        duration: 2000,

      }
    );
    mensaje.present();
  }
開發者ID:DiegoBinario,項目名稱:EPE2_APP,代碼行數:10,代碼來源:acerca-de-pagina.page.ts

示例6:

 this.networkService.isOnline.subscribe(async isOnline => {
   if (!isOnline) {
     this.statusToast = await this.toastController.create({
       message: `Internet connection lost. Please check your network settings.`,
       position: 'bottom'
     });
     this.statusToast.present();
     return;
   }
   if (this.statusToast) {
     this.statusToast.dismiss();
   }
 });
開發者ID:bitjson,項目名稱:bitcore,代碼行數:13,代碼來源:status-notifier.component.ts

示例7:

 err => {
   if (err instanceof HttpErrorResponse) {
     if (err.status === 401) {
       this.router.navigateByUrl("/logout");
       this.toastController
         .create({
           message: this.translateService.instant("SESSION_EXPIRED"),
           duration: 4000
         })
         .then(t => {
           t.present();
         });
     }
   }
 }
開發者ID:strandls,項目名稱:biodiv-mobile,代碼行數:15,代碼來源:http-auth.interceptor.ts


注:本文中的@ionic/angular.ToastController.create方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。