ModelForm 中选择框的数据 print(list(self.fields['customer'].choices)) # [('', '---------'), (1, '张飞'), (2, '关羽'), (3, '刘备')] print(list(self.fields['customer'].widget.choices)) # [('', '---------'), (1, '张飞'), (2, '关羽'), (3, '刘备')] # 修改数据限制显示的内容 # 修改之前的 cus