项目中使用的axios
Posted 南夏de博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了项目中使用的axios相关的知识,希望对你有一定的参考价值。
getData(url,data){
this.$http({
method:‘post‘,
url:url,
data:data,
transformRequest:[function(data){
return qs.stringify(data)
}]
}).then(
(response2)=>{
console.log(response2.data.data);
this.list2=response2.data.data;
}
).catch(
function(error2){
console.log(error2);
})
},
以上是关于项目中使用的axios的主要内容,如果未能解决你的问题,请参考以下文章