在 Forms 中,我们可以使用empty_label。我使用小部件Select,我的选择来自数据库,可以在这里使用empty_label
吗?在模型中我有:
position = forms.IntegerField(label=position_label, required=False,
widget=forms.Select(choices=Position.objects.all().values_list('id', 'position'),
attrs={'class':'main', 'title': position_label},
), empty_label="(Empty)")
但错误是:
TypeError: __init__() got an unexpected keyword argument 'empty_label'
如何将标签设置为“空”?谢谢。