3
fetch API
を使用してAPIエンドポイントを呼び出しています。 本文およびヘッダーを解決済みの約束で読むにはどうすればよいですか?本文/応答約束のヘッダーを読む方法
以下の私のコードスニペット:あなたは見つけるでしょう体については
fetch(myRequest).then(function(response) {
var contentType = response.headers.get("content-type");
if(contentType && contentType.indexOf("application/json") !== -1) {
return response.json().then(function(json) {
// process your JSON further
});
} else {
console.log("Oops, we haven't got JSON!");
}
});
を:
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