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成神之路。
共有 0 条评论