ionic3 和 ionic2 还是有些差别,做双击退出的时候 按照网上大神ionic2的例子套进去,不管用 ,自己研究了小 导航系统 最后算是实现了...没几行代码
下面是代码部分:
tabs.ts文件需要声明一下
@ViewChild('mainTabs') tabs:Tabs;//声明tabs组件(<ion-tabs #mainTabs mode="md">)
app.component.ts文件
@ViewChild('myNav') nav: Nav;//声明根组件(<ion-nav #myNav [root]="rootPage">)
public backButtonPressed: boolean = false;
this.platform.ready().then(() => {
//双击退出
this.platform.registerBackButtonAction(() => {
if (this.config.isKeyboardShow) {//如果键盘开启则隐藏键盘
this.config.isKeyboardShow=false;
return;
}
//控制modal、系统自带提示框
let overlay = this.appCtrl._appRoot._overlayPortal.getActive() || this.appCtrl._appRoot._modalPortal.getActive();
if(overlay) {
overlay.dismiss();
return;
}
let activeVC = this.nav.getActive();
let page = activeVC.instance;
if(page.tabs){
let activeNav = page.tabs.getSelected();
if(activeNav.canGoBack()){
return activeNav.pop();
}else{
return this.showExit();
}
}
if (page instanceof Login) {//查看当前页面是否是登陆页面
this.showExit();
return;
}
this.appCtrl.getActiveNav().pop();//剩余的情况全部使用全局路由进行操作
}, 999);
});
//双击退出函数
showExit() {
if (this.backButtonPressed){
this.platform.exitApp();
} else {
this.tip.presentToast('再按一次退出应用');
this.backButtonPressed = true;
setTimeout(() => {
this.backButtonPressed = false;
}, 2000)
}
}