当前位置: 首页>>代码示例>>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;未经允许,请勿转载。