Я использую fetch polyfill для получения JSON или текста из URL-адреса, я хочу знать, как я могу проверить, является ли ответ объектом JSON или это только текст
fetch(URL, options).then(response => {
// how to check if response has a body of type json?
if (response.isJson()) return response.json();
});
javascript
json
fetch-api
Сибелиус Серафини
источник
источник
Ответы:
Вы можете проверить
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 => { // process your JSON data further }); } else { return response.text().then(text => { // this is text, do something with it }); } });
Если вам нужно быть абсолютно уверенным, что контент является допустимым JSON (и не доверяет заголовкам), вы всегда можете просто принять ответ как
text
и самостоятельно проанализировать его:fetch(myRequest) .then(response => response.text()) .then(text => { try { const data = JSON.parse(text); // Do your JSON handling here } catch(err) { // It is text, do you text handling here } });
Асинхронный / ожидание
Если вы используете
async/await
, вы можете написать его более линейно:async function myFetch(myRequest) { try { const reponse = await fetch(myRequest); // Fetch the resource const text = await response.text(); // Parse it as text const data = JSON.parse(text); // Try to parse it as json // Do your JSON handling here } catch(err) { // This probably means your response is text, do you text handling here } }
источник
Вы можете сделать это чисто с помощью вспомогательной функции:
const parseJson = async response => { const text = await response.text() try{ const json = JSON.parse(text) return json } catch(err) { throw new Error("Did not receive JSON, instead received: " + text) } }
А затем используйте это так:
fetch(URL, options) .then(parseJson) .then(result => { console.log("My json: ", result) })
Это вызовет ошибку, так что вы можете
catch
это сделать, если хотите.источник
Используйте парсер JSON, например JSON.parse:
function IsJsonString(str) { try { var obj = JSON.parse(str); // More strict checking // if (obj && typeof obj === "object") { // return true; // } } catch (e) { return false; } return true; }
источник