Dynamically added form fields are removed in form.cleaned_data
问题 I put some client-side Javascript in my template that allows a user to dynamically add fields to a form. My problem is that these fields are cleaned in form.cleaned_data , so I can't access them that way. All the fields are accessible in request.POST , so I could just solve this problem with that, but I want to do this the "right way" and I think that the solution lies somewhere in using django forms rather than reading the request directly. I tried overriding form.clean() , but it seems like