คุณสามารถตรวจสอบcontent-type
การตอบสนองดังที่แสดงในตัวอย่าง MDN นี้ :
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 => {
});
}
});
หากคุณต้องการให้แน่ใจอย่างแท้จริงว่าเนื้อหานั้นเป็น JSON ที่ถูกต้อง (และไม่ไว้วางใจส่วนหัว) คุณสามารถยอมรับคำตอบtext
และแยกวิเคราะห์ด้วยตัวเองได้เสมอ:
fetch(myRequest)
.then(response => response.text())
.then(text => {
try {
const data = JSON.parse(text);
} catch(err) {
}
});
Async / รอ
หากคุณกำลังใช้async/await
คุณสามารถเขียนให้เป็นเส้นตรงมากขึ้น:
async function myFetch(myRequest) {
try {
const reponse = await fetch(myRequest);
const text = await response.text();
const data = JSON.parse(text);
} catch(err) {
}
}