在vue-cli中的config文件夹下面的index.js文件dev.proxyTable;
我们要请求一个http://xxxx.cn/mobile/index.我们就可以设置如下
proxyTable: {'/mobile': {
target: 'http://xxxx.cn',
changeOrigin: true,
pathRewrite: {
'^/mobile': '/mobile'
}
}
}
或者后台设置Access-Control-Allow-Origin:*
网友评论