与 API 交互时,自定义 Header 键始终变为小写。我使用Fetch
, Axios
,XMLHttpRequest
和Frisbee
(javascript 网络库) 但键总是小写
我这样的代码片段(使用fetch()
方法),我推送的关键是:'Token-Api'但服务器收到:'token-api',所以它显示错误 401。它与 Postman 一起工作:
const request = 'https://abcxyz';
fetch(request, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Token-Api':'...abcxyz....'
}
}).then((response) => {
log(abcxyz)
})...
我需要做什么?