请求
GET 请求
axios.get('URL')
.then(res =>{
console.log(res.data);
}).catch(err =>{
console.log(err);
})
axios.get('URL')
.then(res =>{
console.log(res.data);
}).catch(err =>{
console.log(err);
})