uniapp h5 跨域

该方案仅适合开发阶段使用

  • 在项目内找到manifest.json


    image.png
  • 找到h5内 devServer 添加 proxy


    image.png
"proxy": {
                "/api": {
                    "target": "http://www.baidu.com", // 请求的目标域名
                    "changeOrigin": true,
                    "secure": false,
                    "pathRewrite": {
                        "^/api": "/api" // 使用代理,表明需要使用这个连接代理
                    }
                }
            }

你可能感兴趣的:(uniapp h5 跨域)