AngularJs 解决不能设置Content-Type的方法

前端之家收集整理的这篇文章主要介绍了AngularJs 解决不能设置Content-Type的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$http({
method: 'GET',
url: 'rest/home/banners',
headers: {
"x-version": "h5-v1.0.0",
"x-timestamp": currentdate,
'Content-type': 'application/json'
},
transformRequest:function(obj){ var str=[]; for(var p in obj){ str.push(encodeURIComponent(p) + "-"+encodeURIComponent(obj[p])); } return str.join("&"); } ... ... });

猜你在找的Angularjs相关文章