vue axios的使用及操作
引入axios 并设置原型
Vue.prototype.$axios = axios;
在其他地方就可以this.$axios使用了
let param = _this.$qs.stringify({
pageSize: _this.pageSize,
pageNo: _this.pagenum,
searchText: _this.fvalue,
});
_this.$axios.post("路径",param,{
headers: {
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8",
},
})
.then((response) => {
// 获取的值 并在这里操作
})
}
param 是传的参数 headers 是配置传参的格式utf-8,不然如果有中文会乱码。
.then 成功后的操作。
好好学习,天天向上!