Angular2 Http Interceptor 自定义拦截器

背景需求:

  • 1.项目开发、测试、发布使用的后台发布接口均不一致,根据不同环境配置接口的host+port
  • 2.全局处理非正确的response
  • 3.每次请求前显示loading,请求后隐藏loading(本文不涉及)

实现:

  • 1.自定义HttpInterceptorService(http.interceptor.service.ts)

     import { Injectable } from '@angular/core';
     import { Http, Request, RequestOptionsArgs, Response, RequestOptions, ConnectionBackend, Headers } from '@angular/http';
     import 'rxjs/Rx';
     import { Observable } from 'rxjs/Observable';
     @Injectable()
     export class HttpInterceptorService extends Http {
       status = {
         "status.400": "错误的请求。由于语法错误,该请求无法完成。",
         "status.401": "未经授权。服务器拒绝响应。",
         "status.403": "已禁止。服务器拒绝响应。",
         "status.404": "未找到。无法找到请求的位置。",
         "status.405": "方法不被允许。使用该位置不支持的请求方法进行了请求。",
         "status.406": "不可接受。服务器只生成客户端不接受的响应。",
         "status.407": "需要代理身份验证。客户端必须先使用代理对自身进行身份验证。",
         "status.408": "请求超时。等待请求的服务器超时。",
         "status.409": "冲突。由于请求中的冲突,无法完成该请求。",
         "status.410": "过期。请求页不再可用。",
         "status.411": "长度必需。未定义“内容长度”。",
         "status.412": "前提条件不满足。请求中给定的前提条件由服务器评估为 false。",
         "status.413": "请求实体太大。服务器不会接受请求,因为请求实体太大。",
         "status.414": "请求 URI 太长。服务器不会接受该请求,因为 URL 太长。",
         "status.415": "不支持的媒体类型。服务器不会接受该请求,因为媒体类型不受支持。",
         "status.416": "HTTP 状态代码 {0}",
         "status.500": "内部服务器错误。",
         "status.501": "未实现。服务器不识别该请求方法,或者服务器没有能力完成请求。",
         "status.503": "服务不可用。服务器当前不可用(过载或故障)。"
       };
       constructor(backend: ConnectionBackend, defaultOptions: RequestOptions) {
         super(backend, defaultOptions);
       }
       request(url: string | Request, options ? : RequestOptionsArgs): Observable < Response > {
         //console.log("before...");
         //根据不同的生产环境配置http前缀
         typeof url=='string'? (url='http://192.168.1.205:8099/'+url):(url.url='http://192.168.1.205:8099/'+url.url);
         return this.intercept(super.request(url, options));
       }
       get(url: string, options ? : RequestOptionsArgs): Observable < Response > {
         return this.intercept(super.get(url, options));
       }
       post(url: string, body: string, options ? : RequestOptionsArgs): Observable < Response > {
         return this.intercept(super.post(url, body, this.getRequestOptionArgs(options)));
       }
       put(url: string, body: string, options ? : RequestOptionsArgs): Observable < Response > {
         return this.intercept(super.put(url, body, this.getRequestOptionArgs(options)));
       }
       delete(url: string, options ? : RequestOptionsArgs): Observable < Response > {
         return this.intercept(super.put(url, this.getRequestOptionArgs(options)));
       }
       getRequestOptionArgs(options ? : RequestOptionsArgs): RequestOptionsArgs {
         if (options == null) {
           options = new RequestOptions();
         }
         if (options.headers == null) {
           options.headers = new Headers();
         }
         options.headers.append('Content-Type', 'application/json');
         return options;
       }
       intercept(observable: Observable < Response > ): Observable < Response > {
         //console.log("after...");
         return observable.catch((err, source) => {
           if (err.status<200 || err.status>=300) {
             alert('网络错误:'+err.status+' - '+this.status['status.'+err.status]);
             return Observable.empty();
           } else {
             return Observable.throw(err);
           }
         });
       }
     }
    
  • 2.在app.module.ts中provide

     import { NgModule }      from '@angular/core';
     import { BrowserModule } from '@angular/platform-browser';
     import { FormsModule }   from '@angular/forms';
     import { Http, HttpModule, XHRBackend, RequestOptions }    from '@angular/http';
     import { RouterModule, Routes } from '@angular/router';
     import { MessagesModule, GrowlModule, ConfirmDialogModule, ConfirmationService, DialogModule, BlockUIModule } from 'primeng/primeng';
     
     import { AppComponent }  from './app.component';
     
     import { HttpInterceptorService }   from './shared/http.interceptor.service';
     
     export function interceptorFactory(xhrBackend: XHRBackend, requestOptions: RequestOptions){
       let service = new HttpInterceptorService(xhrBackend, requestOptions);
       return service;
     }
     
     @NgModule({
       imports:      [
         BrowserModule,
         FormsModule,
         HttpModule,
         RouterModule.forRoot(appRoutes),
         LoginModule,
         FrameModule,
         MessagesModule, GrowlModule, ConfirmDialogModule, DialogModule, BlockUIModule
       ],
       declarations: [ AppComponent ],
       bootstrap:    [ AppComponent ],
       providers:    [
         HttpInterceptorService,
         {
           provide: Http,
           useFactory: interceptorFactory,
           deps: [XHRBackend, RequestOptions]
         }
       ]
     })
     export class AppModule { }
    
  • 3.使用,示例:app.component.ts

      import { Component } from '@angular/core';
      import { Http }  from '@angular/http';
      @Component({
        selector: 'app-root',
        templateUrl: './app.component.html',
        styleUrls: ['./app.component.css']
      })
      export class AppComponent {
        title = 'app works!';
        constructor(private http: Http){}
      
        ngOnInit(){
          this.http.get('api/user/functions')
          .toPromise()
          .then(res => console.log(res));
        }
      }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,580评论 18 139
  • iOS开发系列--网络开发 概览 大部分应用程序都或多或少会牵扯到网络开发,例如说新浪微博、微信等,这些应用本身可...
    lichengjin阅读 3,633评论 2 7
  • 秋天人们依然坐在外边,喝着咖啡,吃着点心,和朋友聊着天。苏珊为德国这股潮流感到震惊。 几年前我注意到德国的一个现象...
    阿好在德国阅读 339评论 2 7
  • 今天跟同事吃饭,聊到这个话题。举例来说,对于旅游,如果只是想要出去散心,随便哪里都可以的话,这就不算是渴望,...
    盒子里的妮简阅读 516评论 0 0