📜  error_messages – Django 内置字段验证

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

error_messages – Django 内置字段验证

Django 模型中的内置字段验证是为所有 Django 字段预定义的验证。每个字段都带有来自 Django 验证器的内置验证。还可以添加更多内置字段验证,以在特定字段上应用或删除某些约束。 error_messages属性用于修改在某些约束失败期间显示在管理界面中的错误消息。
例如,您可以将“此字段为必填项”消息覆盖为您自己的消息。它允许您覆盖该字段将引发的默认消息。传入带有与您要覆盖的错误消息匹配的键的字典。错误消息键包括nullblankinvalidinvalid_choiceuniqueunique_for_date
句法 -

field_name = models.Field(error_messages = {"key": "message"})

Django 内置字段验证 editable=False 说明

使用示例说明error_messages 。考虑一个名为 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, 
                    unique = True
                    )


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, 
                    unique = True,
                    error_messages ={
                    "unique":"The Geeks Field you entered is not unique."
                    }
                    )


在 Django 上运行 makemigrations 和 migrate 并渲染上述模型后,让我们从 Django 管理界面创建一个带有字符串“ a ”的实例。现在打破unique=True的约束,让我们尝试使用相同的字符串再创建一个模型实例。现在它将显示此错误。

django 错误消息

现在让我们将此错误消息修改为“您输入的 Geeks 字段不是唯一的”。使用error_messages 。将models.py更改为

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, 
                    unique = True,
                    error_messages ={
                    "unique":"The Geeks Field you entered is not unique."
                    }
                    )

由于 models.py 已修改运行 makemigrations 并在项目上再次迁移。打开管理界面并尝试再次使用字符串“a”创建实例。

django-error-messages-1

您可以看到修改后的错误消息。因此,error_messages 修改了字段错误消息。您可以使用其他属性进行修改,例如nullblank等。

更多内置字段验证

.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.