axios Uncaught(in promise)错误:错误:生成中没有适配器“http”

blpfk2vs  于 2023-04-20  发布在  iOS
关注(0)|答案(2)|浏览(415)

我正在尝试在React chrome扩展模块中使用axios,但我遇到了这个问题。

Uncaught(in promise)错误:错误:适配器'http'在构建中不可用

// background.ts

import axios from "axios"
...
axios.get<SerInyResponse>("https://realtor.p.rapidapi.com/locations/v2/auto-complete")
            .then(response => {
                this.Storage.setLocalStorage(response.data).then( (re) => {
                    resolve(response.data.Listeners)
                })
                
            })
            .catch( err => {
                reject(new Error(err))
            })

谁能帮帮我?

csbfibhn

csbfibhn1#

使用Fetch写入
const res = await fetch(url, { method: "GET", credentials: "include", headers: { Cookie: token }, });

6mw9ycah

6mw9ycah2#

service worker只支持fetch

相关问题