码迷,mamicode.com
首页 > Web开发 > 详细

angularjs http设置headers (用户唯一识别 token )

时间:2017-06-07 20:48:05      阅读:457      评论:0      收藏:0      [点我收藏+]

标签:mod   []   console   angularjs   code   provider   ade   response   tor   

想使用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 )

标签:mod   []   console   angularjs   code   provider   ade   response   tor   

原文地址:http://www.cnblogs.com/cynthia-wuqian/p/6958659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!