gpt4 book ai didi

arrays - 对象数组作为请求 POST axios 的参数

转载 作者:搜寻专家 更新时间:2023-10-30 22:47:38 26 4
gpt4 key购买 nike

我正在使用 vue.js 开发一个项目并处理我使用 AxiosAJAX 请求,我想知道是否可以将参数传递给POST 请求此类型的对象数组:

[{id: 1, name: 'max'}, {id: 2, name: 'jhon'}, {id: 3, name: 'anna'}]

如果可能,最好的方法是什么?

最佳答案

Sure!

let arrOfObj = [
{ name: 'John', lastName: 'Doe' },
{ name: 'Jane', lastName: 'Doe' }
]

axios.post('url_here',arrOfObj)
.then(console.log)
.catch(console.log)

关于arrays - 对象数组作为请求 POST axios 的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49781100/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com