多选字段不显示django中的queryset

时间:2013-08-21 18:33:21

标签: django django-forms

我正在尝试创建一个由查询集填充的多选字段。

我的表单如下:

class GroupLocationForm(forms.Form):
    groups_field = forms.MultipleChoiceField(required=False, 
                                    widget=forms.CheckboxSelectMultiple)

    def __init__(self, customer_id, group_id):
        super(GroupLocationForm, self).__init__()
        customer = Customer.objects.get(pk=customer_id)

        self.fields['groups_field'].queryset = Group.objects.filter(location__customer = customer).distinct()

在我的表单中没有任何选择。如果我添加:

MY_CHOICES = (
                  (1,'choice 1'),
)

groups_field = forms.MultipleChoiceField(required=False, 
                                    widget=forms.CheckboxSelectMultiple, choices=MY_CHOICES)

选择显示没有任何问题。

为什么我的查询集没有分配给窗口小部件?

1 个答案:

答案 0 :(得分:10)

MultipleChoiceField不接受queryset参数,但接受choiceshttps://docs.djangoproject.com/en/1.5/ref/forms/fields/#multiplechoicefield

ModelMultipleChoiceField接受查询集。