axios的基本用法

axios 前后端数据交互的方法
基于promise的一个http请求方式,可以在客户端和服务端进行使用

特点:
1、在浏览器中可以创建XMLHTTPRequest
2、可以在服务端创http服务
3、支持promiseAPI
4、数据类型的转换
5、数据类型的劫持
.....

1、get请求

axios.get("/user",{
params:{
需要传递的参数
},
headers:{}
})
.then(()=>{})
.catch(()=>{})

2、post

axios.post("/user",{
需要传递的参数
}).
then(()=>{})
.catch(()=>{})


3、axios的综合写法


axios({
method:"请求的方式"
url:"请求的地址"
data:发送的数据
headers:请求头
}).then(()=>{})
.catch(()=>{})


axios
post请求的时候参数通过data进行传递
get请求的时候参数通过params进行传递

axios.create:创建一个新的axios
headers:{
content-type:"application/json"
application/x-www-form-urlencoded
qs

{

}
name=zhangsan&age=19
}

withCredentials:携带cookie

拦截器

原文地址:https://www.cnblogs.com/PeiGaGa/p/11032667.html