vue跨域解决方案(marksheng)
可以在Vue项目 config文件夹下的index.js找到proxyTable并设置如下代码
proxyTable: {
"/api":{
target: 'http://127.0.0.1:8080',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
并且取main.js设置如下代码
Vue.prototype.$Api =
原创
2021-01-06 15:30:31 ·
135 阅读 ·
0 评论