Open dahai300 opened 4 years ago
const originFetch = globalThis.fetch
globalThis.fetch = function (url, opt) {
// 修改参数
const res = await originFetch(url, opt)
// 利用这个修改响应 https://developer.mozilla.org/zh-CN/docs/Web/API/ReadableStream
return res.clone()
}
支持拦截fetch请求吗