當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Platform.exitApp方法代碼示例

本文整理匯總了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;
        });
開發者ID:qwb0920,項目名稱:birdchain-mvp,代碼行數:25,代碼來源:layout.component.ts

示例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();

        });
開發者ID:letuthanhson,項目名稱:ionic,代碼行數:10,代碼來源:home.ts

示例3: terminate

 terminate(event){
    console.log("terminate");
    this.platform.exitApp();
 }
開發者ID:raceyi,項目名稱:takit,代碼行數:4,代碼來源:error.ts

示例4: exitApp

 exitApp(){
    this.platform.exitApp();
 }
開發者ID:tejit2004,項目名稱:app,代碼行數:3,代碼來源:app.ts

示例5: closeApp

 /**
  * closes the app
  */
 closeApp() {
     this.platform.exitApp();
     LocalNotifications.clear(1);
 }
開發者ID:GSE-Project,項目名稱:SS2016-group3,代碼行數:7,代碼來源:popover.ts

示例6:

 handler: data =>{
   this.platform.exitApp();
 }
開發者ID:EnriqueTun23,項目名稱:pescaderia,代碼行數:3,代碼來源:home.ts

示例7:

 handler: () => {
   //this.nav.push(Inicio);
   this.alert = undefined;
   this.platform.exitApp();
 }
開發者ID:GECOR,項目名稱:playas-velez,代碼行數:5,代碼來源:inicio.ts


注:本文中的ionic-angular.Platform.exitApp方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。