angularjs http拦截器类(ES6)失去了对这个'这个'

时间:2015-02-20 21:32:41

标签: angularjs interceptor ecmascript-6 traceur gulp-traceur

我正在使用ES6类构建AngularJS应用程序,并将跟踪器转换为AMD格式的ES5。

在我的模块中,我导入拦截器类并将其注册为服务,然后使用module.config中的$ httpProvider.interceptors注册此服务:

var commonModule = angular.module(moduleName, [constants.name]);

import authenticationInterceptor from './authentication/authentication.interceptor';

commonModule.service('authenticationInterceptor', authenticationInterceptor);

commonModule.config( $httpProvider =>  {
    $httpProvider.interceptors.push('authenticationInterceptor');
});

我的拦截器类注入 $ q $ window 服务,将它们保存在构造函数中供以后使用。我使用调试器跟踪了这一部分,正确地进行了注入:

'use strict';
/*jshint esnext: true */

var authenticationInterceptor = class AuthenticationInterceptor {

    /* ngInject */
    constructor($q, $window) {
        this.$q = $q;
        this.$window = $window;
    }

    responseError(rejection) {
        var authToken = rejection.config.headers.Authorization;
        if (rejection.status === 401 && !authToken) {
            let authentication_url = rejection.data.errors[0].data.authenticationUrl;
            this.$window.location.replace(authentication_url);
            return this.$q.defer(rejection);
        }
        return this.$q.reject(rejections);
    }
}

authenticationInterceptor.$inject = ['$q', '$window'];

export default authenticationInterceptor;

当我发出以 401 响应的请求时,拦截器会相应地触发,但是在“响应错误”中#39;方法'这个'变量指向窗口对象而不是我的拦截器,因此我无法访问 this。$ q this。$ window

我无法弄清楚为什么?有什么想法吗?

9 个答案:

答案 0 :(得分:26)

上下文(this)丢失了,因为Angular框架只保留对处理函数本身的引用,并且在没有任何上下文的情况下直接调用它们,正如alexpods指出的那样。

我最近写了一篇关于使用TypeScript编写$http拦截器的博客文章,该文章也适用于ES6类:AngularJS 1.x Interceptors Using TypeScript

总结一下我在本文中讨论的内容,为了不丢失处理程序中的this,您必须将方法定义为箭头函数,有效地将函数直接放在类的{{1}内。 1}}编译的ES5代码中的函数。

constructor

如果 真的坚持 将拦截器写成完全基于原型的类,那么 可以 为拦截器定义基类并扩展它。基类将用实例方法替换原型拦截器函数,因此我们可以编写这样的拦截器:

class AuthenticationInterceptor {

    /* ngInject */
    constructor($q, $window) {
        this.$q = $q;
        this.$window = $window;
    }

    responseError = (rejection) => {
        var authToken = rejection.config.headers.Authorization;
        if (rejection.status === 401 && !authToken) {
            let authentication_url = rejection.data.errors[0].data.authenticationUrl;
            this.$window.location.replace(authentication_url);
            return this.$q.defer(rejection);
        }
        return this.$q.reject(rejections);
    }
}

答案 1 :(得分:4)

查看these lines of source code

// apply interceptors
forEach(reversedInterceptors, function(interceptor) {
    if (interceptor.request || interceptor.requestError) {
        chain.unshift(interceptor.request, interceptor.requestError);
    }
    if (interceptor.response || interceptor.responseError) {
        chain.push(interceptor.response, interceptor.responseError);
    }
});

interceptor.responseError方法被推入链时,它会丢失其上下文(只是函数被推送,没有任何上下文);

稍后here它将被添加到promise作为拒绝回调:

while (chain.length) {
    var thenFn = chain.shift();
    var rejectFn = chain.shift();

    promise = promise.then(thenFn, rejectFn);
}

因此,如果承诺被拒绝,rejectFn(您的responseError函数)将作为普通函数执行。在这种情况下,如果脚本以非严格模式执行,this引用window,否则等于null

IMHO Angular 1是在考虑ES5的情况下编写的,所以我认为在ES6中使用它并不是一个好主意。

答案 2 :(得分:4)

这与我遇到的问题完全相同,但是, 我找到了一个解决方法,设置了这个'这个'在自变量中就像解决es5上的作用域问题一样,它工作正常:

let self;

class AuthInterceptor{

   constructor(session){
       self = this;
       this.session = session;
   }

   request(config){
       if(self.session) {
           config.headers = self.session.getSessionParams().headers; 
       }
       return config;
   }

   responseError(rejection){
       if(rejection.status == 401){

       }

       return rejection;
   }

}

export default AuthInterceptor;

答案 3 :(得分:4)

要添加到对话中,您可以从包含显式绑定类方法的构造函数返回一个对象。

export default class HttpInterceptor {

   constructor($q, $injector) {
       this.$q = $q;
       this.$injector = $injector;

       return {
           request: this.request.bind(this),
           requestError: this.requestError.bind(this),
           response: this.response.bind(this),
           responseError: this.responseError.bind(this)
       }
   }

   request(req) {
       this.otherMethod();
       // ...
   }

   requestError(err) {
       // ...
   }

   response(res) {
       // ...
   }

   responseError(err) {
       // ...
   }

   otherMethod() {
       // ...
   }

}

答案 4 :(得分:1)

请注意,在类属性中使用箭头函数是ES7的实验性功能。但是大多数开发者都没有问题。

如果您想坚持使用官方ES6实现,您可以通过在构造函数中定义方法来创建实例方法而不是原型方法。

class AuthenticationInterceptor {
  /* ngInject */
  constructor($q, $window) {
    
    this.responseError = (rejection) => {
      const authToken = rejection.config.headers.Authorization;
      if (rejection.status === 401 && !authToken) {
        const authentication_url = rejection.data.errors[0].data.authenticationUrl;
        $window.location.replace(authentication_url);
        return $q.defer(rejection);
      }
      return $q.reject(rejection);
    };
    
  }
}

我喜欢这个解决方案,因为它减少了样板代码的数量;

  • 您不再需要将所有依赖项放在this中。因此,您可以使用this.$q而不是$q
  • 无需从构造函数
  • 返回显式绑定的类方法

有一个额外的压痕水平是一个缺点。此外,此方法可能不适合经常实例化的类,因为在这种情况下它会消耗更多内存。例如。;使用直接类属性(转换为原型方法)对于可能在一个页面上多次使用的组件的控制器更有效。不要担心服务,提供商和工厂,因为这些都是单身人士,他们只会被实例化一次。

答案 5 :(得分:0)

带箭头功能的工作解决方案:

var AuthInterceptor = ($q, $injector, $log) => {
    'ngInject';

    var requestErrorCallback = request => {
        if (request.status === 500) {
          $log.debug('Something went wrong.');
        }
        return $q.reject(request);
    };

    var requestCallback = config => {
        const token = localStorage.getItem('jwt');

        if (token) {
            config.headers.Authorization = 'Bearer ' + token;
        }
        return config;
    };

    var responseErrorCallback = response => {
         // handle the case where the user is not authenticated
        if (response.status === 401 || response.status === 403) {
            // $rootScope.$broadcast('unauthenticated', response);
            $injector.get('$state').go('login');
       }
       return $q.reject(response);
    }

  return {
    'request':       requestCallback,
    'response':      config => config,
    'requestError':  requestErrorCallback,
    'responseError': responseErrorCallback,
  };
};

/***/
var config = function($httpProvider) {
    $httpProvider.interceptors.push('authInterceptor');
};

/***/    
export
default angular.module('services.auth', [])
    .service('authInterceptor', AuthInterceptor)
    .config(config)
    .name;

答案 6 :(得分:0)

为了获得关于箭头功能的其他优秀答案,我认为在拦截器中使用静态工厂方法有点清洁:

<LinearLayout
    orientation="vertical"
    ...>
          <LinearLayout
                  orientation="horizontal"
                  ...>
                      <TextViews ... />
           </LinearLayout>
           <ImageView ... />
</LinearLayout>

用法:

export default class AuthenticationInterceptor {
 static $inject = ['$q', '$injector', '$rootRouter'];
 constructor ($q, $injector, $rootRouter) {
  this.$q = $q;
  this.$injector = $injector;
  this.$rootRouter = $rootRouter;
 }

 static create($q, $injector, $rootRouter) {
  return new AuthenticationInterceptor($q, $injector, $rootRouter);
 }

 responseError = (rejection) => {
  const HANDLE_CODES = [401, 403];

  if (HANDLE_CODES.includes(rejection.status)) {
   // lazy inject in order to avoid circular dependency for $http
   this.$injector.get('authenticationService').clearPrincipal();
   this.$rootRouter.navigate(['Login']);
  }
  return this.$q.reject(rejection);
 }
}

答案 7 :(得分:0)

我的工作解决方案,不使用 ngInject

myInterceptor.js

export default ($q) => {
let response = (res) => {
    return res || $q.when(res);
}

let responseError = (rejection) => {
    //do your stuff HERE!!
    return $q.reject(rejection);
}

return {
    response: response,
    responseError: responseError
}

}

myAngularApp.js

// angular services
import myInterceptor from 'myInterceptor';

// declare app
const application = angular.module('myApp', [])
        .factory('$myInterceptor', myInterceptor)
        .config(['$httpProvider', function($httpProvider) {  
           $httpProvider.interceptors.push('$myInterceptor');
        }]);

答案 8 :(得分:-1)

export default class AuthInterceptor{


    /*@ngInject;*/
    constructor(SomeService,$q){

        this.$q=$q;
        this.someSrv = SomeService;



        this.request = (config) =>{
            ...
            this.someSrv.doit();
            return config;

        }

        this.response = (response)=>{
            ...
            this.someSrv.doit();
            return response;
        }

        this.responseError = (response) => {
           ...
           return this.$q.reject(response);
        }



    }



}