我想检索服务器发送的响应标头。但我得到了空的对象。我可以在 chrome 开发工具中看到响应标头,但无法从 javascript 中获取它们。
(我正在为 xhr 请求使用 isomorphic-fetch lib。)
fetch("http://my.cors.url/postsomedata", {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(myjsobject),
})
.then(response => response.headers)
.then((headers) => {
console.log(headers); // empty object
})
这不是重复的 如何在 AJAX 中获取响应标头 我没有使用 jQuery。