响应拦截器的方法是:
return {
response: function(response) {
// processing here
}
};
由于 CORS 响应头的问题和各种错误,我想直接访问 xhr 对象并检索特定的头。但是,response
似乎只有:
data
- 返回的正文
config
- 原始请求
status
- 响应状态
headers()
- 卡在错误上的有问题的函数
如何获取实际xhr
对象以便直接查看标题?
供参考:AngularJS 和 Apiary.IO - 无法读取任何响应标头?
我想做选项 3,并直接使用 xhr,但是如何在拦截器中使用它?