vue跨域问题
1. 在 config/index.js -> proxyTable 中设置添加代理
proxyTable: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}},
2. 使用 axios 访问接口
const url = '/message/getMessage'this.$axios.get(url).then(response => { console.log(response) })