本文整理汇总了TypeScript中@ionic/angular.ToastController类的典型用法代码示例。如果您正苦于以下问题:TypeScript ToastController类的具体用法?TypeScript ToastController怎么用?TypeScript ToastController使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ToastController类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: presentToast
async presentToast(message: string) {
const toast = await this.toastController.create({
message: message,
duration: 1000
});
toast.present();
}
示例2: mensaje_no_encontrado
async mensaje_no_encontrado() {
const mensaje = await this.toastCtrl.create({
message: 'Jugador no encontrado',
duration: 2000,
})
mensaje.present();
}
示例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();
}
示例4: mostrar_calificacion_mala
async mostrar_calificacion_mala() {
const mensaje = await this.ToastCtrl.create(
{
message: "SEGUIREMOS TRANAJANDO PARA MEJORAR :c",
duration: 2000,
}
);
mensaje.present();
}
示例5: mostrar_calificacion_buena
async mostrar_calificacion_buena() {
const mensaje = await this.ToastCtrl.create(
{
message: "GRACIAS POR SU APOYO!!!",
duration: 2000,
}
);
mensaje.present();
}
示例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();
}
});
示例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();
});
}
}
}