"use strict"; //自定义配置 module.exports = { //打包路径修改 publicPath:'./', //接口代理 devServer: { https: false, proxy: { //系统接口 '/aaa': { target: 'http://60.173.242.198:8083',//代理接口 changeOrigin: true, ws: true, pathRewrite: { '^/aaa': ''//代理的路径 } }, } }, };其次、将调用的接口地址中与上面target重合部分去了,如原来是“http://60.173.242.198:8083/open/api/tokenL/get”,现在换成“/aaa/open/api/tokenL/get”,即可解决跨域问题了。在真实获取数据时,接口地址“/aaa/open/api/tokenL/get”里面的”/aaa"将会被替换成“http://60.173.242.198:8083”,最终组合为“http://60.173.242.198:8083/open/api/tokenL/get”。
部分素材资源来源网站,本站提供免费下载,如有侵权请联系站长马上删除!