angularjs http设置headers (用户唯一识别 token )
Posted Cynthia娆墨旧染
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs http设置headers (用户唯一识别 token )相关的知识,希望对你有一定的参考价值。
想使用angularjs里的htpp向后台发送请求,现在有个用户唯一识别的token想要放到headers里面去,也就是{headres:{‘token‘:1}}
index.html里引入以下js:
angular.module(‘app.factorys‘,[]) .factory(‘httpInterceptor‘,[‘$q‘,‘$injector‘,‘$localStorage‘,function ($q,$injector,$localStorage) { var httpInterceptor = { ‘responseError‘ : function(response) { // ...... return $q.reject(response); }, ‘response‘ : function(response) { if (response.status == 21000) { // console.log(‘do something...‘); } return response || $q.when(response); }, ‘request‘ : function(config) { config.headers = config.headers || {}; if ($localStorage.token) { config.headers.token = $localStorage.token; // config.headers[‘X-Access-Token‘] = $localStorage.token; }; return config || $q.when(config); return config; }, ‘requestError‘ : function(config){ // ...... return $q.reject(config); } }; return httpInterceptor; }])
在app里注入factory后,在config里面配置
.config([‘$httpProvider‘,function(){ $httpProvider.interceptors.push(httpInterceptor); }])
以上是关于angularjs http设置headers (用户唯一识别 token )的主要内容,如果未能解决你的问题,请参考以下文章
使用 angularjs $http 将内容类型设置为 utf-8
AngularJS中的$ http Auth Headers
关于AngularJS中$http跨域 与 nodejs接收跨域请求(使用express-session,body-parser)的设置