每次从浏览器复制一个fetch都懒得写for循环,浏览器感觉也有bug,用fetch请求完了没有去调text貌似控制台接口就不显示返回数据,有毒吧这
for (let i = 0; i < 1000; i++) {
fetch("*****", {
}).then(res=>{
return res.text();
}).then((res)=>{
console.log(res);
});
}
2023-06-02 13:55:47 已有版本 1 个 show:0.93kTYPE: blog
每次从浏览器复制一个fetch都懒得写for循环,浏览器感觉也有bug,用fetch请求完了没有去调text貌似控制台接口就不显示返回数据,有毒吧这
for (let i = 0; i < 1000; i++) {
fetch("*****", {
}).then(res=>{
return res.text();
}).then((res)=>{
console.log(res);
});
}