1

我想在表单向导中使用表单集。

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],
    })

当表单集有多个条目时,我只能看到一个条目:

 {'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 之外,>as_view() 方法采用 instance_dict 参数,该参数应包含 >ModelForm 和 ModelFormSet 的实例。与 initial_dict 类似,这些字典键值应该 > 等于表单列表中的步数。

不幸的是,我不确定这里是什么意思。

4

1 回答 1

1

这没有用,因为我需要在这里记录的内联表单集: https ://docs.djangoproject.com/en/dev/topics/forms/modelforms/#using-an-inline-formset-in-a-view

于 2012-08-28T07:34:47.860 回答