详解Angular.js中$http拦截器的介绍及使用
前言
$http service在angular中用于简化与后台的交互过程,其本质上使用xmlhttprequest或jsonp进行与后台的数据交互。在与后台的交互过程中,可能会对每条请求发送到server之前进行预处理(如加入token),或者是在server返回数据到达客户端还未被处理之前进行预处理(如将非json格式数据进行转换);当然还有可能对在请求和响应过程过发生的问题进行捕获处理。所有这些需求在开发中都非常常见,所以angular为我们提供了$http拦截器,用来实现上述需求。
什么是拦截器
顾名思义,拦截器就是在目标达到目的地之前对其进行处理以便处理结果更加符合我们的预期。angular的$http拦截器是通过$httpprovider.interceptors
数组定义的一组拦截器,每个拦截器都是实现了某些特定方法的factory:
实现拦截器
http拦截器一般通过定义factory的方式实现:
myapp.factory('myinterceptor', function($q) { return { // 可选,拦截成功的请求 request: function(config) { // 进行预处理 // ... return config || $q.when(config); }, // 可选,拦截失败的请求 requesterror: function(rejection) { // 对失败的请求进行处理 // ... if (canrecover(rejection)) { return responseornewpromise } return $q.reject(rejection); }, // 可选,拦截成功的响应 response: function(response) { // 进行预处理 // .... return response || $q.when(reponse); }, // 可选,拦截失败的响应 responseerror: function(rejection) { // 对失败的响应进行处理 // ... if (canrecover(rejection)) { return responseornewpromise } return $q.reject(rejection); } }; });
随后,我们需要将实现的拦截器加入到$httpprovider.interceptors
数组中,此操作一般在config方法中进行:
myapp.config(function($httpprovider) { $httpprovider.interceptors.push(myinterceptor); });
当然,我们也可以通过匿名factroy的方式实现:
$httpprovider.interceptors.push(function($q) { return { request: function(config) { // bala }, response: function(response) { // bala }, // bala }; });
可以看到,每个拦截器都可以实现4个可选的处理函数,分别对应请求(成功/失败)和响应(成功/失败)的拦截:
1、request:此函数在$http向server发送请求之前被调用,在此函数中可以对成功的http请求进行处理,其包含一个http 对象作为参数,这里对对象具有完全的处理权限,甚至可以重新构造,然后直接返回此对象或返回包含此对象的promise即可。如果返回有误,会造成$http请求失败。如开发中经常需要在请求头中加入token以便验证身份,我们可以作如下处理:
request: function(config) { config.headers = config.headers || {}; if ($window.sessionstorage.token) { config.headers['x-access-token'] = $window.sessionstorage.token; } return config || $q.when(config); }
2、requesterror:此方法会在前一个拦截器抛出异常或进行了reject操作时被调用,在这里可以进行恢复请求的操作,或者进行一些对于请求时发起动作的处理(如取消loading等);
3、response:此函数在$http从server接收到响应时被调用,在此函数中可以对成功的http响应进行处理,这里具有对响应的完全处理权限,甚至可以重新构造,然后直接返回响应或返回包含响应的promise即可。如果返回有误,会造成$http接收响应失败;
4、responseerror:此方法会在前一个拦截器抛出异常或进行了reject操作时被调用,在这里可以进行恢复响应的操作,进行一些针对错误的处理。
使用用例
为演示angular $http拦截器的使用方法,下面通过几个常用的用例来说明:
利用request拦截器模拟实现angular的xsrf(即csrf)防御
csrf,即“跨站请求伪造”,不过不知道为什么angular将其称为xsrf。当处理与后台交互时,angular的$http会尝试从客户端cookie中读取一个token,其默认的key为xsrf-token,并构造一个名为x-xsrf-token的http头部,与http请求一起发送到后台。server端就可以根据此token识别出请求来源于同域,当然跨域的请求$http不会加入x-xsrf-token头部。那我们可以利用request拦截器通过如下方式在同域请求头部中加入此头部以达到模拟angular的xsrf(即csrf)防御机制的实现效果:
/** * 正式开发中angular会主动进行xsrf防御(只要cookie中存在key为`xsrf-token`的token), * 一般不需要手动进行,除非cookie中不存在key为`xsrf-token`的token,这里只是模拟实现 */ request: function(config) { if(config.url.indexof('same_domain_api_url') > -1) { config.headers['x-xsrf-token'] = $cookies.get('xsrf-token'); } return config; }
如果初始http请求头部类似于:
"headers": { "accept": "application/json, text/plain, */*" }
那么经过上述的拦截器后,其http请求头部就变成了:
"headers": { "accept": "application/json, text/plain, */*", "x-xsrf-token": x-xsrf-token-value }
利用response拦截器模拟实现angular json易损性(json vulnerability)防御
angular在$http请求安全性方面不仅为我们设计了xsrf(csrf)防御,而且针对请求json数据的url可能通过类似于<script>标签加载的方式被恶意网站获取到我们的json数据的情况,设计了angular json易损性(json vulnerability)防御,即server端返回的json数据头部可以添加")]}',\n"字符串,得到包含此前缀的响应数据后,angular会将此前缀删去,将响应还原成正式的json数据。此时我们就可以通过response拦截器模拟此过程:
response: function(response) { var data = examinejsonresponse(response); // 假设存在这样一个方法 if(!data) { response = validatejsonresponse(response); // 假设存在这样一个方法 } return response || $q.when(reponse); }
利用request拦截器和response拦截器计算http请求耗时
这个需求可能在开发中并不常用,这里只是作为同时使用request拦截器和response拦截器的例子,我们可以在request拦截器和response拦截器中分别计时,然后求得其差值即可:
myapp.factory('timestampmarker', [function() { return { request: function(config) { config.requesttimestamp = new date().gettime(); return config; }, response: function(response) { response.config.responsetimestamp = new date().gettime(); return response; } }; }]); myapp.config(['$httpprovider', function($httpprovider) { $httpprovider.interceptors.push('timestampmarker'); }]);
这样我们在每次请求后台时,就能够计算出相应请求的耗时了,如:
$http.get('https://api.github.com/users/liuwenzhuang/repos').then(function(response) { var time = response.config.responsetimestamp - response.config.requesttimestamp; console.log('the request took ' + (time / 1000) + ' seconds.'); });
总结
$http作为angular中的核心service,其功能非常强大便捷,今天描述了其子功能http拦截器的概念和描述方式,有理解不正确的地方,请大家留言告知。
上一篇: ReactNative踩坑之配置调试端口的解决方法
下一篇: js禁止表单重复提交