🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# uni-app跨域解决方案 1.官方推荐 [cors和插件安装解决跨域](http://ask.dcloud.net.cn/article/35267) 2.配置uni-app 中 manifest.json->h5->devServer manifest.json "h5": { "devServer": { "port": 8000, "disableHostCheck": true, "proxy": { "/dpc": { "target": "http://dpc.dapeis.net", "changeOrigin": true, "secure": false } } } } http请求 uni.request({ url: '/dpc/getUserInfo', success: (res) => { console.log(res.data); } });