本文整理汇总了TypeScript中@ionic/angular.LoadingController类的典型用法代码示例。如果您正苦于以下问题:TypeScript LoadingController类的具体用法?TypeScript LoadingController怎么用?TypeScript LoadingController使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了LoadingController类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: clickMe
async clickMe() {
const loading = await this.loadingController.create({
duration: 1000,
content: 'Ahem. Please wait.'
});
return loading.present();
}
示例2: presentLoading
async presentLoading( message:string) {
this.loading = await this.loadingCtrl.create({
message,
//duration: 2000
})
console.log('inicia loading');
return await this.loading.present();
}
示例3: mostrar_cargando
async mostrar_cargando() {
const cargando = await this.loaCtrl.create({
spinner: null,
duration: 1000,
message: 'Cargando...',
translucent: true,
cssClass: 'custom-class custom-loading'
});
cargando.present();
}
示例4:
.then( async confirmationResult => {
this.loadingCtrl.dismiss();
console.log('confirmationResult: '+phoneNumberString);
// SMS sent. Prompt user to type the code from the message, then sign the
// user in with confirmationResult.confirm(code).
let prompt = await this.alertCtrl.create({
backdropDismiss: false,
header: 'Código de confirmação',
message: 'Verifique seu SMS',
inputs: [{ name: 'confirmationCode', placeholder: 'Código de confirmação' }],
buttons: [
{ text: 'Cancelar',
handler: (result) => {
//console.log('Cancel clicked');
//this.router.navigate(['/splash']);
window.location.reload();
}
},
{ text: 'Confirmar',
handler: data => {
confirmationResult.confirm(data.confirmationCode)
.then(function (result) {
// User signed in successfully.
this.router.navigate(['/home']);
this.salvaLog('auth',result);
// ...
}).catch(function (result) {
// User couldn't sign in (bad verification code?)
this.salvaLog('auth',result,true);
console.log('Ocorreu um erro!'+result);
});
}
}
]
});
await prompt.present();
})