axios 如何设置VPN请求

99 阅读1分钟
        const { data } = await axios.get(url,{proxy: { 
            protocol: "http", 
            host: "127.0.0.1",
            port: "8882"
        }});