我在提取函数的“fetchUrl”参数中收到以下错误
<块引用>'string 类型的参数 | undefined' 不能分配给参数 'RequestInfo' 类型。
在这个函数中
Uncaught TypeError: window.myFunction is not a function
getBaseUrlNative 是
let fetchUrl = getBaseUrlNative( process.env.APP_DATA, `/v2/marketing/app/file/${file}?cookies=${cookieSess}&expires=${Date.now()}`)
await fetch(fetchUrl, { method: 'get' , cache:"no-store" , headers: {
'Cache-Control': 'no-cache'
}})
.then(res => res.blob())
.then(res => { .......
答案 0 :(得分:1)
在 fetch 函数中使用 any 数据类型来禁止类型检查。
let fetchUrl = getBaseUrlNative( process.env.APP_DATA, `/v2/marketing/app/file/${file}?cookies=${cookieSess}&expires=${Date.now()}`)
await fetch(<any>fetchUrl, { method: 'get' , cache:"no-store" , headers: {
'Cache-Control': 'no-cache'
}})
.then(res => res.blob())
.then(res => { .......