- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我总是使用以下代码来验证表单以防止提交空白表单。它在 Django 1.8 中始终有效,但由于某种原因在 Django 2.2 中不起作用。
这是表格
class CreateForm(forms.ModelForm):
class Meta:
model = Device
fields = ['category', 'item_name', 'quantity']
def clean_category(self):
category = self.cleaned_data.get('category')
if category == '':
raise forms.ValidationError('This field is required')
return category
def clean_item_name(self):
item_name = self.cleaned_data.get('item_name')
if item_name == '':
raise forms.ValidationError('This field is required')
return item_name
这是模型
class Device(models.Model):
category = models.CharField(max_length=50, blank=True, null=True)
item_name = models.CharField(max_length=50, blank=True, null=True)
quantity = models.IntegerField(default='0', blank=False, null=True)
谢谢
最佳答案
我认为问题是你没有检查None
,但尽管如此。我认为你的目标是自己做太多的工作。您只需指定该字段为 required=True
[Django-doc] ,这将:
By default, each Field class assumes the value is required, so if you pass an empty value - either
None
or the empty string (""
) - thenclean()
will raise aValidationError
exception.
因此我们可以使用以下方式创建必填字段:
class CreateForm(forms.ModelForm):
category = forms.CharField(<b>required=True</b>, max_length=50)
item_name = forms.CharField(<b>required=True</b>, max_length=50)
class Meta:
model = Device
fields = ['category', 'item_name', 'quantity']
话虽如此,指定 blank=True
[Django-doc] 相当“奇怪”。因为这实际上意味着模型表单中不需要该字段。 blank=True
并不意味着允许使用空字符串,因为即使使用 blank=False
,您也可以在字段中存储空字符串。 ModelForm 将根据它“包装”的模型来定义(大部分)其验证,因此这意味着如果您更好地定义模型,则可以删除大量样板代码。因此我建议消除 blank=True
。
关于django - 验证空白 django 表单字段不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62019993/
我尝试通过正则表达式将文本中的单引号更改为双引号。 (单字)示例:我走了。 You gona fly to planet 'Ziqtos' => 我需要在 I'm 中保留单引号,并在 You gona
我正在构建一个 API,其中大部分将包含 JSON 和 HTML 内容。但是一些非常具体的端点只呈现 true 或 false,并且还在 POST 中接受 true 或 false。这是请求或响应的整
我是一名优秀的程序员,十分优秀!