- vue.config.js中
module.exports = {
devServer:{
proxy: 'http://xxx.xxx.xxx.xxx:8080' // 需要代理的地址
}
}
- src/main.js中
import axios from 'axios'
Vue.prototype.$axios = axios
- 需要使用的方法中
getApiData(){
axios.get('/api/test',{
params:{
//如果有参数可以在这里写
value:key
}
}
.then(res => {
console.log(res)
})
.catch(err => {
console.log(err )
})
}