axios问题 data和params的区别
2019-04-09 本文已影响0人
日出丶
1.post请求使用
axios({
url:"api",
data:{
reqData:{
item:"123",
id:"2"
}
}
})
2.get请求使用
axios({
url:"api",
params:{
reqData:{
item:"123",
id:"2"
}
}
})
get请求会拼写子url里面
post并不需要拼写在url里面
在post请求的时候的参数很有可能是json(看1),所以需要拼接一下。
index.html?reqData={ "item":"123","id":"2"}