Angularjs中config中置入以下拦截器

$httpProvider.interceptors.push(['$rootScope', '$q', '$localStorage', function ($rootScope, $q, $localStorage) {
return {
request: function (config) { // Header - Token
config.headers = config.headers || {};
if ($localStorage.token) {
config.headers.token = $localStorage.token;
}; return config;
}, response: function (response) { if (response.status == 200) {
// console.log('do something...');
} return response || $q.when(response);
}, responseError: function (response) { return $q.reject(response);
}
}
}])

基于这样的问题:

想使用angularjs里的htpp向后台发送请求,后台是基于tornado的,现在有个用户唯一识别的token想要放到headers里面去,也就是{headres:{'token':1}},但是尝试了很多方法不行,想问下应该怎么做,后台需不需要设置一些什么东西,多谢

上面是参考解决方法之一

上一篇:Ubuntu如何安装谷歌Chrome浏览器


下一篇:Axure谷歌浏览器Chrome扩展程序下载及安装方法