我想在formwizard中使用formset。
class Model1(models.Model):
customerid = models.CharField(max_length=20)
Name = models.CharField(max_length=40)
class Model1Form(ModelForm):
class Meta:
model = Model1
class Model2(models.Model):
product = models.CharField(max_length=100)
price = models.DecimalField(max_digits=5, decimal_places=2)
class Model2Form(forms.Form):
product = forms.ModelChoiceField(queryset=Model2.objects.all())
amount = forms.IntegerField(required=False)
Model2Formset = formsets.formset_factory(Model2Form)
在我的urls.py中:
(r'^testwizard/$', TestWizard.as_view([Model1Form, Model2Formset])),
我使用基本视图查看发布表单的结果:
class TestWizard(SessionWizardView):
def done(self, form_list, **kwargs):
return render_to_response('template', {
'form_data': [form.cleaned_data for form in form_list],
})
当formset有多个条目时,我只能看到一个条目:
{'customerid': u'7676', 'Name': u'7', 'klantnummer': u'7'} [{'product': <Model2: Bike>, 'amount': 7}]
我期待:
{'customerid': u'7676', 'Name': u'7', 'klantnummer': u'7'} [{'product': <Model2: Bike>, 'amount': 7},{'product': <Model2: Plane>, 'amount': 5}]
在文档中找到了这个:
WizardView支持ModelForms和ModelFormSets。除了initial_dict之外,&gt; as_view()方法接受一个instance_dict参数,该参数应该包含&gt; ModelForm和ModelFormSet的实例。与initial_dict类似,这些字典键值应>等于表单列表中的步骤编号。
不幸的是我不确定这里是什么意思。
答案 0 :(得分:1)
这不起作用,因为我需要一个在此记录的内联formset: https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#using-an-inline-formset-in-a-view