无法从 json-server 访问 X-Total-Count header
Can't access X-Total-Count header from json-server
我正在使用 axios 从 JSON 服务器请求数据。虽然我可以看到 JSON 服务器正在使用 Postman 返回 X-Total-Count
header,但是 axios 没有看到 header。我使用的是 http 协议,所以 CORS 应该不是问题。我错过了什么?
这是对 json-server 的调用:
const resp = await axios.get('/orders?_start=0&_end=100');
const orderCount = resp.headers['X-Total-Count'];
这是收到的 headers(在 Chrome Devtools 中捕获)。请注意缺少 X-Total-Count
:
Postman 中相同的 HTTP 调用显示返回 X-Total-Count
:
已解决。我使用了命令行选项 --no-cors
并且 axios 开始看到 X-Total-Count header.
我正在使用 axios 从 JSON 服务器请求数据。虽然我可以看到 JSON 服务器正在使用 Postman 返回 X-Total-Count
header,但是 axios 没有看到 header。我使用的是 http 协议,所以 CORS 应该不是问题。我错过了什么?
这是对 json-server 的调用:
const resp = await axios.get('/orders?_start=0&_end=100');
const orderCount = resp.headers['X-Total-Count'];
这是收到的 headers(在 Chrome Devtools 中捕获)。请注意缺少 X-Total-Count
:
Postman 中相同的 HTTP 调用显示返回 X-Total-Count
:
已解决。我使用了命令行选项 --no-cors
并且 axios 开始看到 X-Total-Count header.