我有一个使用 $httpProvider 作为 follwos 的拦截器(取自 Angular 文档)
$httpProvider.interceptors.push(function ($q) {
return {
'response': function (response) {
// look for the antiforgerytoken and update dataService with the same.
return response || $q.when(response);
}
};
});
使用调试器,我看到每个响应都会调用此方法,当我查看传递的“响应”对象时,我只看到一个标头,即 Accept-Header,如下所示
当我查看 chrome 中的响应数据包时,我看到了更多标头
我的问题是为什么我看不到响应中的所有标题?
具体来说,我想读取 AntiforgeryToken 的 cookie 并存储它,我该怎么做?