我使用 Apiary.io 模拟我的 API。但不知何故,我无法使用 angularJS 从响应对象中读取任何标题。而且我确信我至少通过检查萤火虫正确设置了 Content-Type: application/json 。Angular 中的代码也应该正确读取标题,因为我可以在将请求发送到 apiary.io 以外的其他地方时打印它们...
$http.get('http://ies.apiary.io/some').then(function(response) {
console.log("ok",response.headers('Content-Type'));
},function(response){console.log("err",response);});