我在模型上有一个字段,如下所示:
class MyModel(models.Model):
status_field = models.NullBooleanField(blank=False,
verbose_name="Status",
choices=((True, 'Approved'),
(False, 'Denied'),
(None, 'Pending')))
然后我为这个模型建立了一个ModelForm。在那个ModelForm中,我想有条件地/动态地删除其中一个选择。我正在尝试:
class MyModelForm(forms.ModelForm):
class Meta:
model = MyModel
def __init__(self, *args, **kwargs):
super(MyModelForm, self).__init__(*args, **kwargs)
if self.instance and self.instance.status_field is not None:
self.fields['status_field'].choices.remove((None, 'Pending'))
print self.fields['status_field'].choices
我可以从print语句中看出,确实已经删除了这个选择。但是,我必须遗漏一些东西,因为在渲染表单时,此字段的窗口小部件仍包含我删除的选项。
有效的是,我尝试做的是在提供值后阻止此字段变为None / null。为了方便用户,我想在下拉列表中删除该选项。
感谢您的帮助!
答案 0 :(得分:5)
然后初始化表单,将choices
属性从字段复制到字段的窗口小部件。所以你必须从小部件中删除选择:
if self.instance and self.instance.status_field is not None:
new_choices = list(self.fields['status_field'].choices)
new_choices.remove((None, 'Pending'))
self.fields['status_field'].choices = new_choices
self.fields['status_field'].widget.choices = new_choices