JS fetch, not getting headers on response(JS fetch,没有得到响应的标题)
问题描述
我正在使用 fetch 向 wordpress api 发出请求,但我在响应中得到一个空的 headers 对象,有人知道为什么吗?
I'm making a request using fetch to wordpress api, but I get a empty headers object on the response, anyone knows why?
这是我的获取操作
export const getJobs = () => {
return dispatch => {
fetch(endpoints.jobs)
.then(res => res.json())
.then(data => dispatch(setJobs(data)))
}
};
这是我在做 res.json 之前得到的对象
and here's the object that I get before doing res.json
body: (...)
bodyUsed: false
headers: {}
ok: true
redirected: false
status: 200
statusText: "OK"
type: "cors"
url: "url"
关于如何从响应中获取所有标头的任何想法?
any ideas on how I can get all the headers from the response?
推荐答案
使用 CORS 时访问响应头有限制.由于您的响应类型是 cors,这可能是罪魁祸首.
There is a restriction on accessing response headers when using CORS. Since your response type is cors that might be the culprit.
请参阅此 详细回答.
这篇关于JS fetch,没有得到响应的标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JS fetch,没有得到响应的标题
基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01