46

你如何使ChoiceField's label 表现得像ModelChoiceField?有没有办法设置一个empty_label,或者至少显示一个空白字段?

表格.py:

    thing = forms.ModelChoiceField(queryset=Thing.objects.all(), empty_label='Label')
    color = forms.ChoiceField(choices=COLORS)
    year = forms.ChoiceField(choices=YEAR_CHOICES)

我已经尝试过这里建议的解决方案:

Stack Overflow Q - 设置CHOICES = [('','All')] + CHOICES导致内部服务器错误。

Stack Overflow Q2 -('', '---------'),在我的选择中定义后,仍然默认为列表中的第一项,而不是('', '---------'),选择。

要点- 尝试使用EmptyChoiceField这里定义的,但没有使用 Django 1.4。

但这些都不适合我。你会如何解决这个问题?谢谢你的想法!

4

8 回答 8

56

请参阅关于ChoiceField的 Django 1.11 文档。ChoiceField 的“空值”定义为空字符串'',因此您的元组列表应包含''映射到您要为空值显示的任何值的键。

### forms.py
from django.forms import Form, ChoiceField

CHOICE_LIST = [
    ('', '----'), # replace the value '----' with whatever you want, it won't matter
    (1, 'Rock'),
    (2, 'Hard Place')
]

class SomeForm (Form):

    some_choice = ChoiceField(choices=CHOICE_LIST, required=False)

请注意,如果您希望表单字段是可选的,则可以通过使用来避免表单错误required=False

此外,如果您已经有一个没有空值的 CHOICE_LIST,您可以插入一个,以便它首先显示在表单下拉菜单中:

CHOICE_LIST.insert(0, ('', '----'))
于 2013-01-26T23:58:34.483 回答
22

这是我使用的解决方案:

from myapp.models import COLORS

COLORS_EMPTY = [('','---------')] + COLORS

class ColorBrowseForm(forms.Form):
    color = forms.ChoiceField(choices=COLORS_EMPTY, required=False, widget=forms.Select(attrs={'onchange': 'this.form.submit();'}))
于 2013-08-08T22:10:02.060 回答
5

你可以试试这个(假设你的选择是元组):

blank_choice = (('', '---------'),)
...
color = forms.ChoiceField(choices=blank_choice + COLORS)
year = forms.ChoiceField(choices=blank_choice + YEAR_CHOICES)

另外,我无法从你的代码中判断这是表单还是ModelForm,但它是后者,无需在此处重新定义表单字段(您可以直接在模型字段中包含choices=COLORS和choices=YEAR_CHOICES .

希望这可以帮助。

于 2013-01-26T22:48:08.777 回答
4

我知道你已经接受了一个答案,但我只想发布这个,以防有人遇到我遇到的问题,即接受的解决方案不适用于 ValueListQuerySet。您链接到的EmptyChoiceField非常适合我(尽管我使用的是 django 1.7)。

class EmptyChoiceField(forms.ChoiceField):
    def __init__(self, choices=(), empty_label=None, required=True, widget=None, label=None, initial=None, help_text=None, *args, **kwargs):

        # prepend an empty label if it exists (and field is not required!)
        if not required and empty_label is not None:
            choices = tuple([(u'', empty_label)] + list(choices))

        super(EmptyChoiceField, self).__init__(choices=choices, required=required, widget=widget, label=label, initial=initial, help_text=help_text, *args, **kwargs) 

class FilterForm(forms.ModelForm):
    #place your other fields here 
    state = EmptyChoiceField(choices=People.objects.all().values_list("state", "state").distinct(), required=False, empty_label="Show All")
于 2015-02-04T18:23:06.470 回答
2

派对有点晚了。。

根本不修改选择并仅使用小部件处理它怎么样?

from django.db.models import BLANK_CHOICE_DASH

class EmptySelect(Select):
    empty_value = BLANK_CHOICE_DASH[0]
    empty_label = BLANK_CHOICE_DASH[1]

    @property
    def choices(self):
        yield (self.empty_value, self.empty_label,)
        for choice in self._choices:
            yield choice

    @choices.setter
    def choices(self, val):
        self._choices = val

然后调用它:

class SomeForm(forms.Form):
    # thing = forms.ModelChoiceField(queryset=Thing.objects.all(), empty_label='Label')
    color = forms.ChoiceField(choices=COLORS, widget=EmptySelect)
    year = forms.ChoiceField(choices=YEAR_CHOICES, widget=EmptySelect)

自然地,EmptySelect将被放置在某种common/widgets.py代码中,然后当你需要它时,只需引用它。

于 2018-09-07T11:52:37.523 回答
1

由于模型中的整数字段,不得不使用 0 而不是 u''。(错误是 int() 以 10 为底的无效文字:')

# prepend an empty label if it exists (and field is not required!)
if not required and empty_label is not None:
    choices = tuple([(0, empty_label)] + list(choices))
于 2017-03-08T17:46:36.863 回答
0

它不是同一种形式,但我受 EmptyChoiceField 方法的启发采用以下方式:

from django import forms
from ..models import Operator


def parent_operators():
    choices = Operator.objects.get_parent_operators().values_list('pk', 'name')
    choices = tuple([(u'', 'Is main Operator')] + list(choices))
    return choices


class OperatorForm(forms.ModelForm):
    class Meta:
        model = Operator
        # fields = '__all__'
        fields = ('name', 'abbr', 'parent', 'om_customer_id', 'om_customer_name', 'email', 'status')

    def __init__(self, *args, **kwargs):
        super(OperatorForm, self).__init__(*args, **kwargs)
        self.fields['name'].widget.attrs.update({'class': 'form-control m-input form-control-sm'})
        self.fields['abbr'].widget.attrs.update({'class': 'form-control m-input form-control-sm'})
        self.fields['parent'].widget.attrs.update({'class': 'form-control m-input form-control-sm'})
        self.fields['parent'].choices = parent_operators()
        self.fields['parent'].required = False
        self.fields['om_customer_id'].widget.attrs.update({'class': 'form-control m-input form-control-sm'})
        self.fields['om_customer_name'].widget.attrs.update({'class': 'form-control m-input form-control-sm'})
        self.fields['email'].widget.attrs.update({'class': 'form-control m-input form-control-sm', 'type': 'email'})enter code here
于 2019-01-23T13:05:42.977 回答
0

实现此目的的另一种方法是将选择小部件与其余小部件分开定义,并更改保存内容的方法。

表格.py

class CardAddForm(forms.ModelForm):
    category = forms.ModelChoiceField(empty_label='Choose category',
                                      queryset=Categories.objects.all(),
                                      widget=forms.Select(attrs={'class':'select-css'}))

    class Meta:
        **other model field**

而在views.py你应该obj.create(**form.cleaned_data)使用form.save()

于 2021-05-08T23:45:59.340 回答