proxyTable: {
'/backend': {
target: 'http://test.com', //源地址
changeOrigin: true, //改变源
pathRewrite: {
'^/backend': '/backend' //路径重写
}
}
},
//可以在main.js里加上axios.defaults.baseURL = '/backend';请求就可以不写backend了
this.axios.get('/queryPage?isGuiShang=1&offset=0&limit=10')
.then(function(response) {
console.log(response);//可收到数据
})
做完这些一定要重启,重启,重启,不然不管用,我就因为没有重启浪费很多时间
网友评论