3
我使用fetch API
調用API端點。 我該如何閱讀回覆正文和標題已解決主體承諾?如何讀取正文/響應中的標頭承諾
我的代碼如下片段:
fetch(url, {
credentials: 'include',
method: 'post',
headers: {
"Content-Type": "application/json; charset=utf-8",
},
body: JSON.stringify({
email: email,
password: password,
}),
})
.then(response => response.json())
.then(function(response) {
// How to access response headers here?
});
我需要在我處理JSON的地方獲取標題。 – LukasMac
在我的示例中,您可以在json方法中訪問contentType – Ygalbel