项目中使用的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的主要内容,如果未能解决你的问题,请参考以下文章

如何在项目声明文件中使用 Axios 类型

在 React 项目中使用 Axios 的目的 [关闭]

项目中使用的axios

在vue项目中使用axios

vue项目中对axios的二次封装

vue2项目使用axios发送请求