ionic 调用restful API services时全局错误处理的实现 或自定义错误处理的实现

Posted caiyaming

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ionic 调用restful API services时全局错误处理的实现 或自定义错误处理的实现相关的知识,希望对你有一定的参考价值。

往往我们的ionic程序需要调用API Service. 比如天气,地图等等。当这些API Service 不稳定或者不可访问时,我们可以通过在注册一个自定义的ErrorHandler, 来处理此类错误。

 

1.   将自定义错误处理类作为provider,  也就是Service.   在终端使用命令: ionic g provider GlobalErrorHandler .  ionic generate 命令行定义可以参考此处

2.     实现GlobalErrorHandler, 完整代码如下。

 import { ErrorHandler, Injectable } from ‘@angular/core‘;

import { AlertController } from ‘ionic-angular‘;

@Injectable()

export class GlobalErrorHandler extends ErrorHandler {

  constructor(public alertCtrl: AlertController) {

    super();

  }

  handleError(error: any): void {

     super.handleError(error);

    // IMPORTANT: Rethrow the error otherwise it gets swallowed

    if (error) {

      if (error.status === 0 && error.name === ‘HttpErrorResponse‘ && error.statusText === ‘Unknown Error‘) {

        this.showAlert(‘ 后台服务遇到了问题,目前正在修复中,请稍后访问,给您带来不便,深表歉意。‘);

        //It‘s better to add this to log file.

      }

    }

  }

  showAlert(subTitleText) {

    let alert = this.alertCtrl.create({

      title: ‘发生错误!‘,

      subTitle: subTitleText,

      buttons: [‘确定‘]

    });

    alert.present();

  }

}

3.   在 srcappapp.module.ts 中注册 GlobalErrorHandler  . 以下是代码片段, 请关注粗体部分。

import { GlobalErrorHandler } from ‘../providers/global-error-handler/global-error-handler‘;

@NgModule({

  declarations: [...],

  imports: [...],

  bootstrap: [IonicApp],

  entryComponents: [

    MyApp 

  ],

  providers: [

     {provide: ErrorHandler, useClass: GlobalErrorHandler},

      //  IMP. GlobalErrorHandler should be here, otherwise it would not be triggered.

     GlobalErrorHandler

  ]

})

export class AppModule {}

 

这样的话,我们就在ionic程序中引入了全局错误处理。 一旦第三方的services 或者我们自己的service 发生错误不可访问时, 页面将会有Alert弹出。 如下图所示。

 

技术分享图片
 

以上是关于ionic 调用restful API services时全局错误处理的实现 或自定义错误处理的实现的主要内容,如果未能解决你的问题,请参考以下文章

ionic 2 REST API:无法加载网址

如何为我的移动应用程序的 REST API 调用授予 Angular 授权

REST API 检索的字段与对象管理器中的字段不对应

Wordpress Rest api 和 ionic

Angular JSONP 调用 WordPress JSON REST API

启用 Cors 服务的 ionic post in rest 服务错误