Django:访问表单集中的每个表单和FileField

发布于 2024-10-12 18:13:51 字数 161 浏览 1 评论 0原文

如何迭代表单集以获取每个表单以及该表单中的文件字段?

for file in formset.files:
 ....

for form in formset.forms:
 ....

我希望上面的内容在同一个循环中,因为我同时需要它们!

How can I iterate thorugh a formset to get each form and FileField for in that form?

for file in formset.files:
 ....

for form in formset.forms:
 ....

I'd like the above in the same loop since I need both of them in the same time!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

煮酒 2024-10-19 18:13:51

您的问题有点令人困惑,但是如果您正在同一循环中查找表单对象和上传的文件,那么它看起来像这样:

    # code
    for form in formset.forms:
        form.is_valid() # objective #1 accomplished
        the_file = form.cleaned_data['my_file_field'] # objective #2 accomplished

如果不是,请澄清。

Your question is a little confusing, but if you're looking for your form object and uploaded file in the same loop, it would look like so:

    # code
    for form in formset.forms:
        form.is_valid() # objective #1 accomplished
        the_file = form.cleaned_data['my_file_field'] # objective #2 accomplished

If not, please clarify.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文