欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

关于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
})
相关标签: post