赞
踩
1.安装axios环境与配置
npm install --save axios vue-axios
axios的配置
在入口main.js中导入axios 并将axios写入vue的原型,这样就能更简单的使用
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, axios)
axios.get()方法
axios封装了get方法,传入请求地址和请求参数即可。 then中返回的是正常情况下的数据,而catch中返回的是错误信息。请求格式为: this.axios.get(url).then(res => {}).catch(err => {})
export default {
mounted: function () {
var url = 'http://127.0.0.1:8000/api/接口'
this.axios.get(url)
.then(res => {
console.log(res.data)
})
.catch(err => {
alert(err)
})
}
}
axios.post()方法
axios封装了post方法,post方法可以接收请求参数,请求参数定义在格式为: this.axios.post(url, params).then(res => {}).catch(err => {})
e
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。