主要看这个
Axios是什么?用在什么场景?如何使用?_慕课手记
axios.all可以放入多个请求数据 axios.all([])返回的结果是一个数组,使用axios.spread可将数组[res1,res2]展开为res1,res2 小括号是对象解构,中括号是数组解构 axios.get ?? ?参数一 表示请求地址 ?? ?参数二 表示配置信息 ?? ?axios.get("请求地址",{ ?? ??? ?params:{}, ?? ??? ?headers:{} ?? ?}) axios.post ?? ?post请求传递三个参数 ?? ? 请求地址 ?? ? 传递的数据 在请求体中传递 ?? ??? axios默认发送的数据是json格式的 ?? ? 配置信息 ?? ?? headers ?? ??? ?content-type:'application/json' 默认 ?? ?登录 ?? ?axios.post("请求地址",{ ?? ??? ?userName:'xiaoming', ?? ??? ?password:'123456' ?? ?},{ ?? ??? ?params:{ ?? ??? ??? ?a:1, ?? ??? ??? ?b:2 ?? ??? ?} ?? ?}) ?? ?.then(res=>console.log(res)) ?? ?.catch(err=>console.log(err))
|