📜  blank=True – Django 内置字段验证

📅  最后修改于: 2022-05-13 01:54:26.891000             🧑  作者: Mango

blank=True – Django 内置字段验证

Django 模型中的内置字段验证是为所有 Django 字段预定义的默认验证。每个字段都带有来自 Django 验证器的内置验证。还可以添加更多内置字段验证,以在特定字段上应用或删除某些约束。 blank=True 将使该字段接受空白值。它只是意味着该字段可以为空。
句法

field_name = models.Field(blank = True)

Django 内置字段验证空白=真解释

使用示例说明 null=True。考虑一个名为 geeksforgeeks 的项目,它有一个名为 geeks 的应用程序。

极客应用的models.py文件中输入以下代码。我们将使用 CharField 来试验所有字段选项。

Python3
from django.db import models
from django.db.models import Model
# Create your models here.
 
class GeeksModel(Model):
    geeks_field = models.CharField(max_length = 200, blank = True)


Python3
# importing required model
from geeks.models import GeeksModel
 
# creating instance of GeeksModel
s = GeeksModel.objects.create(geeks_field = "")
 
# saving current model instance
s.save()


在 Django 上运行 makemigrations 和 migrate 并渲染上述模型后,让我们尝试使用 Django shell 中的 None 创建一个实例。要启动 Django shell,请输入命令,

Python manage.py shell

现在让我们尝试使用空字符串创建 GeeksModel 的实例。

Python3

# importing required model
from geeks.models import GeeksModel
 
# creating instance of GeeksModel
s = GeeksModel.objects.create(geeks_field = "")
 
# saving current model instance
s.save()

让我们检查管理界面是否创建了模型实例。

null=True - Django 内置字段验证

因此,blank=True 将字段修改为接受值或用 python 的术语“”值。

空白=真的高级概念

请注意,这与null不同。 null纯粹与数据库相关,而空白与验证相关。如果一个字段有空白=真,表单验证将允许输入一个空值。如果某个字段的空白=False,则该字段将是必需的。 null=True 和 blank=True 经常同时使用。两者的组合非常频繁,因为通常如果您要允许表单中的字段为空白,您还需要您的数据库允许该字段的 NULL 值。

更多内置字段验证

.math-table { 边框折叠:折叠;宽度:100%; } .math-table td { 边框:1px 实心 #5fb962;文本对齐:左!重要;填充:8px; } .math-table th { 边框:1px 实心 #5fb962;填充:8px; } .math-table tr>th{ 背景颜色:#c6ebd9;垂直对齐:中间; } .math-table tr:nth-child(odd) { background-color: #ffffff; }

Field OptionsDescription
NullIf True, Django will store empty values as NULL in the database. Default is False.
BlankIf True, the field is allowed to be blank. Default is False.
db_columnThe name of the database column to use for this field. If this isn’t given, Django will use the field’s name. 
 
DefaultThe default value for the field. This can be a value or a callable object. If callable it will be called every time a new object is created. 
 
help_textExtra “help” text to be displayed with the form widget. It’s useful for documentation even if your field isn’t used on a form. 
 
primary_keyIf True, this field is the primary key for the model.
editableIf False, the field will not be displayed in the admin or any other ModelForm. They are also skipped during model validation. Default is True
 
error_messagesThe error_messages argument lets you override the default messages that the field will raise. Pass in a dictionary with keys matching the error messages you want to override. 
 
help_textExtra “help” text to be displayed with the form widget. It’s useful for documentation even if your field isn’t used on a form. 
 
verbose_nameA human-readable name for the field. If the verbose name isn’t given, Django will automatically create it using the field’s attribute name, converting underscores to spaces. 
 
validatorsA list of validators to run for this field. See the validators documentation for more information. 
 
UniqueIf True, this field must be unique throughout the table.