悬赏11油猫币已解决
最佳答案你这个hook有问题,fetch的response的body只能读一次,你在这里读了,别人再读就报错了。你用我改这个试一下
const originalFetch = window.fetch;
window.fetch = function (...args) {
return originalFetch.apply(this, args).then((response) => {
console.log(`Request URL: ${response.url}`);
let origin_text = response.text.bind(response);
let origin_json = response.json.bind(response);
respons ...
| ||
发表于
2024-7-17 16:50:50
|
显示全部楼层
| ||
发表于
2024-7-17 19:05:57
|
显示全部楼层
| ||
混的人。
------------------------------------------ 進撃!永遠の帝国の破壊虎---李恒道 入驻了爱发电https://afdian.net/a/lihengdao666 个人宣言:この世界で私に胜てる人とコードはまだ生まれていません。死ぬのが怖くなければ来てください。 |
||