gpt4 book ai didi

javascript - fetch 是否只抛出 TypeError

转载 作者:行者123 更新时间:2023-11-30 19:45:11 27 4
gpt4 key购买 nike

我可以假设 fetch 只能抛出 TypeError 错误吗?

const request = async () => {
let response = null;
try {
response = await fetch('https://api.com/values/1');
} catch (err){
//is the err here is always of type typeError
}
if(!response.ok){
//bla bla bla 401/403 ...
}
const json = await response.json();
console.log(json);
}

request();

最佳答案

fetch 也有可能抛出 AbortError。参见 the documentation了解更多详情

关于javascript - fetch 是否只抛出 TypeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55009080/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com