关于axios传参的几个技巧
程序员文章站
2022-04-14 22:55:10
...
关于 axios 传参
Headers 参数:
比较常见
axios({
method: 'xxx',
headers: {
名字: 值
}
})
Query 参数:
常见于 GET 请求
axios({
method: 'xxx',
params: {
名字: 值
}
})
Body 参数:
常见于 POST、PUT、PATCH 请求
axios({
method: 'xxx',
data: {
名字: 值
}
})
路径参数:
文档中一般是在 url 中通过 :xxx 表示的
/app/v1_0/users/:target
/app/v1_0/sms/codes/:mobile
/app/v1_0/article/dislikes/:target
/app/v1_0/comment/likings/:target
这种参数必须手动拼接在 url 中。
var userId = 3
axios({
method: 'xxx',
url: '/app/v1_0/users/' + userId
})
上一篇: C++中的IO流——郭炜