我需要通过以下代码获取所有响应标头,但作为响应,它仅返回其中的4个。
示例:https://jsfiddle.net/xy9dch7g/
axios
.head('https://jsonplaceholder.typicode.com/todos/1')
.then(response => {
console.log(response)
})
Axios返回的标头:http://take.ms/5KqEBn
期望的标题:http://take.ms/SFVyl
答案 0 :(得分:0)
如果您希望客户端应用程序能够访问其他标头,则需要在服务器上设置Access-Control-Expose-Headers标头: