使用axios调用post请求传参的两种方式

时间:2025-01-21 10:24:11

1.{key:“value”}形式

axios({
    method:"post",
    url:"//填入接口地址",
    data:{value:}
    }).then(res=>{
        (res)
    }

这样传参后端拿到的是对象形式的:

key:"value"

2. key : value形式

post请求传参为键值对形式

axios({
    method:"post",
    url:"//填入接口地址",
    params:{value:}
    }).then(res=>{
        (res)
    }

这样传参后端拿到的是对象形式的:

key:value

有时候请求不成功不代表传参传错,而是有可能是传值方式不同导致的,这时候就需要跟后端沟通了