axios
axios
1.安装axios
npm install axios
2.在main.js中配置
import axios from 'axios'
Vue.prototype.$axios=axios
3.在组件中使用
this.$axios.request().then().catch()
this.$axios.request({
url:请求的地址
method:请求方式
}).then(function(response){
....请求成功时函数回调处理
}).catch({
....请求失败时函数回调处理
})