github地址,喜歡的能夠star下哦webpack
1.官方推薦
cors和插件安裝解決跨域git
2.配置uni-app 中 manifest.json->h5->devServer
manifest.jsongithub
"h5": { "devServer": { "port": 8000, "disableHostCheck": true, "proxy": { "/dpc": { "target": "http://dpc.dapeis.net", "changeOrigin": true, "secure": false } } } }
http請求web
uni.request({ url: '/dpc/getUserInfo', success: (res) => { console.log(res.data); } });
這樣請求webpack會解析爲請求http://dpc.dapeis.net/dpc/
json
webpack-dev-server
webpack跨域APIsegmentfault