get格式:
axios({ headers:{}, url:“ ”, //url params:{}, }).then(function(res){ //成功回调 }).catch(function(err){ //失败回调 })
post格式:
axios({ method:’post’, //请求方式 headers:{}, url:“ ”, //url data:this.$qs.stringify({}) //参数 }).then(function(res){ //成功回调 }).catch(function(err){ //失败回调 })
安装依赖:
命令:npm install axios --save
在项目中的main.js中引用
import axios from 'axios';
Vue.prototype.$axios = axios;