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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值