解决跨域问题
h5 发请求会报跨域问题,需要使用代理转换请求。
编辑根目录下的 config/index.js 文件
h5: {
devServer: {
host: 'localhost',
port: 10086,
proxy: {
'/api/v1': {
target: 'http://localhost:8000', // 服务端地址
changeOrigin: true
}
}
},
}