h5 端支持代理,可以参考下 ,比如你真实接口是 https://xxx.xxx.com/user/login,request的时候,url为 '/api/user/login' "h5" : { "devServer" : { // "https" : true, "proxy" : { "/api" : { "target" : "https://xxx.xxx.com", "changeOrigin" : true, "secure" : false, "pathRewrite" : { "^/api" : "" } } } } },
1 个回复
喜欢技术的前端 - QQ---445849201
h5 端支持代理,可以参考下 ,比如你真实接口是 https://xxx.xxx.com/user/login,request的时候,url为 '/api/user/login'