我對面的一個問題,我似乎在哪裏可以不設置標題來對爲獲取請求,我想我想的東西獲取授權
var init = {
method: 'GET',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': 'Bearer myKey'
}
};
return fetch(url, init).then(function(response){...
當請求被檢查在網絡選項卡中,我沒有看到頭都將置,而是看
Access-Control-Request-Headers:accept, authorization, content-type
的時候我希望看到
Authorization: Bearer myKey
Content-Type: application/json
Accept: application/json
我也嘗試使用本地頭()與零差異。
我在這裏錯過了什麼嗎?
我認爲「頭」屬性必須是一個頭的實例,而不是隻是一個普通的對象。 – Pointy
https://developer.mozilla.org/en-US/docs/Web/API/Headers#Examples – xkcd149