安装 npm install axios
引入 import axios from 'axios'
Get方式
axios({
method: 'get',
url:url,{
params
}
})
.then(response 返回的结果)=>{
console.log(response) })
.catch(error)=>{
console.log(error)
})
等于
axios.get(url).then(response)=>{
console.log(response) })
}).catch(error)=>{
console.log(error)
})