Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォームセットを反復処理して、各フォームとそのフォームのFileFieldを取得するにはどうすればよいですか?
for file in formset.files: .... for form in formset.forms: ....
両方を同時に必要とするので、同じループで上記を希望します!
あなたの質問は少し紛らわしいですが、同じループでフォームオブジェクトとアップロードされたファイルを探している場合は、次のようになります。
# code for form in formset.forms: form.is_valid() # objective #1 accomplished the_file = form.cleaned_data['my_file_field'] # objective #2 accomplished
そうでない場合は、明確にしてください。