本文整理汇总了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();
}
开发者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类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论