vue axios跨域请求,代理设置

时间:2021-12-21 19:26:17

在config下的index.js中的dev下的 proxyTable{}中设置代理

 proxyTable: {
'/api': {
target: 'http://10.0.100.7:8081', //设置调用接口域名和端口号别忘了加http
changeOrigin: true,
pathRewrite:{
"^/api":""
}
}
},

接口调用时,

 this.Axios.get('/api/resource_overview',{
params: {
vcenter_num:'vcenter1'
}
}).then(function (res) {
console.log(res);
}).catch(function (err) {
console.log(err);
})

注意:原接口:http://10.0.100.7:8081/resource_overview

   页面接口:http://localhost:8081/api/resource_overview,那个多的/api不是多余的,是声明的那个代理