作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我编译我的代码时,返回了这条错误消息:
'ModelChoiceField' object has no attribute 'to_field_name'
ModelChoiceFiled 在“学校代码”字段中。
我已经输入了 to_field_name。
class UserRegister(forms.ModelForm):
class Meta:
mstSchool = MstSchool.objects.filter(use_yn__exact="Y").order_by("code")
model = MstUser
fields = [ 'name', 'id', 'password', 'school_code']
widgets = {
'id' : forms.TextInput(attrs={'placeholder' : 'User ID', 'class':'form-control'}),
'password' : forms.TextInput(attrs={'placeholder' : 'password', 'class':'form-control school-password', 'type':'password'}),
'name' : forms.TextInput(attrs={'placeholder' : 'name', 'class':'form-control school-name'}),
'school_code' : forms.ModelChoiceField(queryset=MstSchool.objects.filter(use_yn__exact="Y").order_by("code"), empty_label="(Nothing)", to_field_name="school_code")
}
'ModelChoiceField' object has no attribute 'to_field_name'
最佳答案
您混淆了字段和小部件。 ModelChoiceField
不是小部件,而是表单域:
class UserRegister(forms.ModelForm):
<b>school_code =</b> forms.ModelChoiceField(queryset=MstSchool.objects.filter(use_yn__exact="Y").order_by("code"), empty_label="(Nothing)")
class Meta:
model = MstUser
fields = [ 'name', 'id', 'password', 'school_code']
widgets = {
'id' : forms.TextInput(attrs={'placeholder' : 'User ID', 'class':'form-control'}),
'password' : forms.TextInput(attrs={'placeholder' : 'password', 'class':'form-control school-password', 'type':'password'}),
'name' : forms.TextInput(attrs={'placeholder' : 'name', 'class':'form-control school-name'}),
}
请不要通过ModelForm
设置id
和password
。密码应该被散列,通常是 set_password
method [Django-doc]用于此目的。
关于python - django ModelChoiceField,to_field_name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57688099/
当我编译我的代码时,返回了这条错误消息: 'ModelChoiceField' object has no attribute 'to_field_name' ModelChoiceFiled 在“学
嗯,几乎就是标题中所说的。 我正在创建一个 ModelChoiceField()在我的其中之一 Forms ,像这样: class FormCreatePlace(forms.ModelForm):
我正在尝试为 ModelForm 创建自定义字段。我正在从 ModelMultipleChoiceField 扩展,然后覆盖渲染和渲染选项,但是,当我试图导入我的表单时,我一直收到这个异常: Attr
我是一名优秀的程序员,十分优秀!