最佳答案
我正在使用提取 polyfill 从 URL 中检索 JSON 或文本,我想知道如何检查响应是 JSON 对象还是仅仅是文本
fetch(URL, options).then(response => {
// how to check if response has a body of type json?
if (response.isJson()) return response.json();
});