本文整理汇总了TypeScript中ionic-angular.Platform.exitApp方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Platform.exitApp方法的具体用法?TypeScript Platform.exitApp怎么用?TypeScript Platform.exitApp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ionic-angular.Platform
的用法示例。
在下文中一共展示了Platform.exitApp方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: Date
this.platform.registerBackButtonAction(() => {
if (this.isMessagesOpened) {
this.isMessagesOpened = false;
return;
}
if (this.navPath.length < 1) {
if (new Date().getTime() - lastTimeBackPress < timePeriodToExit) {
this.platform.exitApp();
} else {
let toast = this.toastCtrl.create({
message: 'Press back again to exit',
duration: 3000,
position: 'bottom'
});
toast.present();
lastTimeBackPress = new Date().getTime();
}
return;
}
this.navPath.pop();
this.slide = this.navPath[this.navPath.length - 1];
this.slides.slideTo(this.slide);
this.isGoingBack = true;
});
示例2:
}).catch(e => {
let alert = this.alertCtrl.create({
title: 'Fatal Error!',
subTitle: 'Unable to get service end-point. Please contact admin.',
buttons: ['OK']
});
alert.present();
platform.exitApp();
});
示例3: terminate
terminate(event){
console.log("terminate");
this.platform.exitApp();
}
示例5: closeApp
/**
* closes the app
*/
closeApp() {
this.platform.exitApp();
LocalNotifications.clear(1);
}
示例6:
handler: data =>{
this.platform.exitApp();
}
示例7:
handler: () => {
//this.nav.push(Inicio);
this.alert = undefined;
this.platform.exitApp();
}