vue proxyTable 接口跨域请求

1.在 config/index.js 路径下 proxyTable: {
},里面添加 '/apis': {
// 测试环境
target: 'http://www.thenewstep.cn/', // 接口域名
changeOrigin: true, //是否跨域
pathRewrite: {
'^/apis': '' //需要rewrite重写的,
}
}
然后在发请求的时候 域名换成/apis

你可能感兴趣的:(vue proxyTable 接口跨域请求)