Anda dapat memeriksa content-type
responnya, seperti yang ditunjukkan pada contoh MDN ini :
fetch(myRequest).then(response => {
const contentType = response.headers.get("content-type");
if (contentType && contentType.indexOf("application/json") !== -1) {
return response.json().then(data => {
});
} else {
return response.text().then(text => {
});
}
});
Jika Anda perlu benar-benar yakin bahwa kontennya adalah JSON yang valid (dan tidak mempercayai header), Anda selalu dapat menerima respons sebagai text
dan menguraikannya sendiri:
fetch(myRequest)
.then(response => response.text())
.then(text => {
try {
const data = JSON.parse(text);
} catch(err) {
}
});
Asinkron / tunggu
Jika Anda menggunakan async/await
, Anda dapat menuliskannya dengan cara yang lebih linier:
async function myFetch(myRequest) {
try {
const reponse = await fetch(myRequest);
const text = await response.text();
const data = JSON.parse(text);
} catch(err) {
}
}