真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

三步實現(xiàn)ionic3點擊退出app程序

本文實例為大家分享了ionic3點擊退出app程序的具體代碼,供大家參考,具體內容如下

創(chuàng)新互聯(lián)建站是一家專業(yè)提供翁牛特企業(yè)網(wǎng)站建設,專注與網(wǎng)站設計、成都網(wǎng)站設計、H5技術、小程序制作等業(yè)務。10年已為翁牛特眾多企業(yè)、政府機構等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設計公司優(yōu)惠進行中。

其實也很簡單。大概分為三步

1.tabs.ts文件需要聲明一下

@ViewChild('mainTabs') tabs:Tabs;//聲明tabs組件()

2.app.component.ts文件

@ViewChild('myNav') nav: Nav;//聲明根組件()

3.貼代碼  

platform.ready().then(()=>{
this.exitApp();
})
public backButtonPressed: boolean = false;
exitApp() {
  this.platform.registerBackButtonAction(() => {
   //控制modal、系統(tǒng)自帶提示框
   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 LoginPage) {//查看當前頁面是否是登陸頁面
    this.showExit();
    return;
   }
   this.appCtrl.getActiveNav().pop();//剩余的情況全部使用全局路由進行操作 
  });
 }
 
 //雙擊退出函數(shù)
 showExit() {
  if (this.backButtonPressed) {
   this.platform.exitApp();
  } else {
   this.presentToast();//再按一次退出
   this.backButtonPressed = true;
   setTimeout(() => {
    this.backButtonPressed = false;
   }, 2000)
  }
 }
 presentToast() {
  let toast = this.toastCtrl.create({
   message: '再按一次退出應用',
   duration: 2000,
   position: 'top'
  });
 
  toast.onDidDismiss(() => {
   console.log('Dismissed toast');
  });
 
  toast.present();
 }

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


分享標題:三步實現(xiàn)ionic3點擊退出app程序
路徑分享:http://weahome.cn/article/pgjgdj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部