axios请求传递参数

axios请求传递参数
1、 get请求传参
axios.get('http://localhost:3000/axios?id=123').then(function(ret){
console.log(ret.data)
})

axios.get('http://localhost:3000/axios/123').then(function(ret){
console.log(ret.data)
})

axios.get('http://localhost:3000/axios', {
params: {
id: 789
}
}).then(function(ret){
console.log(ret.data)
})

2、 delete请求传参
axios.de

axios请求传递参数最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/24241.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>