gpt4 book ai didi

javascript - 如何嵌套表单数据

转载 作者:行者123 更新时间:2023-11-30 21:02:41 25 4
gpt4 key购买 nike

我想要以下 json 示例:

{
attachments: {
file: [
{ name: 'pic1.jpg' },
{ name: 'pic2.png' }
],
username: 'Test',
age: 1
}
}

这在表单数据中可能吗?

最佳答案

好吧,我明白了。只需在数组键之前传递另一个键...例如:

fd = new FormData();
const files = [{...}, {...}, ...]
files.map(file => {
fd.append("attachments[] file[]", file.name)
});
fd.append("attachments[] name", 'Test')
fd.append("attachments[] age", 1)

关于javascript - 如何嵌套表单数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46966880/

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