gpt4 book ai didi

javascript - 如何将列表附加到 FormData?

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

我想将带有附加数据的图像从 React.js 发送到 Django 后端。当我使用 FormData() 创建表单数据时,它无法发送数组(因为它将其转换为字符串)。这是我的代码:

let formData = new FormData();
formData.append('text', postForm.text);
formData.append('image', postForm.image, postForm.image.name);
formData.append('privacy', postForm.privacy);
formData.append('custom_list', postForm.customList);

props.createPost(formData);

当我使用这个时,我得到了这个错误:

{"custom_list":["Incorrect type. Expected pk value, received str."]}

因此,我尝试创建自己的对象以发送到后端,但它无法处理图像数据。代码是:

const formData = {
text: postForm.text,
image: postForm.image,
privacy: postForm.privacy,
custom_list: postForm.customList
}

这给出了以下错误:

{"image":["The submitted data was not a file. Check the encoding type on the form."]}

他们有什么办法可以同时发送列表和图像吗?

最佳答案

您可以这样通过 FormData 发送列表:

postForm.customList.forEach(item => {
formData.append('custom_list', item);
});

这将为您提供后端的 custom_list 数组。

关于javascript - 如何将列表附加到 FormData?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60754544/

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