Django Modelform - 它没有验证,为啥?
Posted
技术标签:
【中文标题】Django Modelform - 它没有验证,为啥?【英文标题】:Django Modelform - it is not validating, why?Django Modelform - 它没有验证,为什么? 【发布时间】:2018-10-31 08:52:58 【问题描述】:我有一个我正在尝试验证的 Django modelForm。该字段是“自定义”字段 - 即它不是模型中的字段,而是我要解析并检查在清理期间是否存在的两个字段的组合。但是 is_valid() 表单方法不起作用,当我打印表单时它说 valid=unknown。
我正在使用 Django 脆表单
Forms.py
class SingleSampleForm(forms.ModelForm):
sample_id = forms.CharField(
required=True,
label='Sample ID:')
class Meta:
model = Sample
fields = ('sample_id',)
def __init__(self, *args, **kwargs):
super(SingleSampleForm, self).__init__()
self.helper = FormHelper()
self.helper.layout = Layout(
Field('sample_id',
# autocomplete='off',
css_class="search-form-label",
),
Submit('submit', 'Search sample', css_class='upload-btn')
)
self.helper.form_method = 'POST'
def clean_sample_id(self):
self.sample_id = self.cleaned_data['sample_id']
print('CLEAN SAMPLE')
try:
... parse self.sample_id and check if exists ...
except Exception as e:
return('Sample does not exist')
Views.py:
class SampleView(View):
sample_form = SingleSampleForm
def get(self, request, *args, **kwargs):
sample_form = self.sample_form()
self.context =
'sample_form': sample_form,
return render(request,
'results/single_sample_search.html',
self.context)
def post(self, request, *args, **kwargs):
sample_form = self.sample_form(request.POST)
if sample_form.is_valid():
print('VALID')
... HttpRedirect()...
else:
print('NOT VALID')
... raise error ...
self.context =
'sample_form': sample_form,
return render(request,
'results/single_sample_search.html',
self.context)
每次我提交表单 charfield 并尝试验证它时,它都会打印“NOT VALID”,如果我打印表单,它会显示有效 = 未知。这(几乎)与我拥有的另一个表单完全相同,它允许我清理字段并验证它,即使它们不是专门的模型字段。为什么表单不验证?
谢谢
【问题讨论】:
【参考方案1】:您的 clean_sample_id 函数不返回任何内容,但它应该返回清理后的值或引发异常。您可以参考下面的代码来检查验证。
def clean_sample_id(self):
sample_id = self.cleaned_data['sample_id']
if sample_id:
return sample_id
raise ValidationError('This field is required')
请参阅完整文档。 https://docs.djangoproject.com/en/2.0/ref/forms/validation/
【讨论】:
以上是关于Django Modelform - 它没有验证,为啥?的主要内容,如果未能解决你的问题,请参考以下文章
Django 1.3 CreateView/ModelForm:unique_together 验证,其中一个字段从表单中排除