序列化程序中的选择选择字段 – Django REST 框架
在 Django REST Framework 中,序列化的概念是将 DB 数据转换为 javascript 可以使用的数据类型。每个序列化程序都带有一些将要处理的字段(条目)。例如,如果您有一个名为 Employee 的类,其字段为 Employee_id、Employee_name、is_admin 等。那么,您将需要 AutoField、CharField 和 BooleanField 来通过 Django 存储和操作数据。同样,序列化器也以相同的原理工作,并具有用于创建序列化器的字段。
本文围绕 Django REST 框架中的序列化程序中的选择选择字段展开。有两个主要字段——Choice 和MultipleChioceField。
选择字段
ChoiceField 基本上是一个 CharField,它根据一组有限选项中的值验证输入。该字段与 ChoiceField – Django Forms 相同。
它有以下论点——
- 选择- 有效值列表,或 (key, display_name) 元组列表。
- allow_blank – 如果设置为 True,则空字符串应被视为有效值。如果设置为 False,则空字符串被视为无效,并会引发验证错误。默认为假。
- html_cutoff – 如果设置,这将是 HTML 选择下拉菜单显示的最大选项数。可用于确保自动生成的具有非常大的可能选择的 ChoiceFields 不会阻止模板呈现。默认为无。
- html_cutoff_text - 如果设置,如果在 HTML 选择下拉列表中已截断最大项目数,则将显示文本指示符。默认为“超过 {count} 个项目……”
句法 -
field_name = serializers.ChoiceField(*args, **kwargs)
多选字段
ChoiceField 基本上是一个 CharField,它根据从一组有限的选项中选择的一组零、一个或多个值来验证输入。该字段与 MultipleChoiceField – Django Forms 相同。
句法 -
field_name = serializers.MultipleChoiceField(*args, **kwargs)
如何在序列化程序中使用选择选择字段?
为了解释选择选择字段的用法,让我们使用相同的项目设置 – 如何使用 Django Rest Framework 创建基本 API?
现在您的项目中有一个名为 serializers 的文件,让我们创建一个以 ChoiceField 和 MultipleChoiceField 作为字段的序列化程序。
Python3
# import serializer from rest_framework
from rest_framework import serializers
class Geeks(object):
def __init__(self, choices, multiplechoices):
self.choices = choices
self.multiplechoices = multiplechoices
# create a tuple
GEEKS_CHOICES =(
("1", "One"),
("2", "Two"),
("3", "Three"),
("4", "Four"),
("5", "Five"),
)
# create a serializer
class GeeksSerializer(serializers.Serializer):
# initialize fields
choices = serializers.ChoiceField(
choices = GEEKS_CHOICES)
multiplechoices = serializers.MultipleChoiceField(
choices = GEEKS_CHOICES)
现在让我们创建一些对象并尝试序列化它们并检查它们是否真的在工作,运行,-
Python manage.py shell
现在,在 shell 中运行以下Python命令
# import everything from serializers
>>> from apis.serializers import *
# create a object of type Geeks
>>> obj = Geeks("One", ["One", "Two"])
# serialize the object
>>> serializer = GeeksSerializer(obj)
# print serialized data
>>> serializer.data
{'choices': 'One', 'multiplechoices': {'Two', 'One'}}
这是终端上所有这些操作的输出 -
选项选择字段的验证
请注意,这些字段的主要座右铭是进行验证,例如 ChoiceField 仅将数据验证给选定的给定选项。让我们检查一下这些验证是否有效——
# Create a dictionary and add invalid values
>>> data={}
>>> data['choices'] = "Naveen"
>>> data['multiplechoices'] = ["One", "Two"]
# dictionary created
>>> data
{'choices': 'Naveen', 'multiplechoices': ['One', 'Two']}
# deserialize the data
>>> serializer = GeeksSerializer(data=data)
# check if data is valid
>>> serializer.is_valid()
False
# check the errors
>>> serializer.errors
{'choices': [ErrorDetail(string='"Naveen" is not a valid choice.', code='invalid_choice')],
'multiplechoices': [ErrorDetail(string='"One" is not a valid choice.', code='invalid_choice')]}
以下是这些命令的输出,清楚地显示 email 和 phone_number 无效 –
高级概念
验证是反序列化而不是序列化的一部分。如前所述,序列化是将已生成的数据转换为另一种数据类型的过程,因此不需要这些默认验证。反序列化需要验证,因为数据需要保存到数据库或指定的任何其他操作。因此,如果您使用这些有效的字段序列化数据。
序列化器字段中的核心参数
Argument | Description |
---|---|
read_only | Set this to True to ensure that the field is used when serializing a representation, but is not used when creating or updating an instance during deserialization |
write_only | Set this to True to ensure that the field may be used when updating or creating an instance, but is not included when serializing the representation. |
required | Setting this to False also allows the object attribute or dictionary key to be omitted from output when serializing the instance. |
default | If set, this gives the default value that will be used for the field if no input value is supplied. |
allow_null | Normally an error will be raised if None is passed to a serializer field. Set this keyword argument to True if None should be considered a valid value. |
source | The name of the attribute that will be used to populate the field. |
validators | A list of validator functions which should be applied to the incoming field input, and which either raise a validation error or simply return. |
error_messages | A dictionary of error codes to error messages. |
label | A short text string that may be used as the name of the field in HTML form fields or other descriptive elements. |
help_text | A text string that may be used as a description of the field in HTML form fields or other descriptive elements. |
initial | A value that should be used for pre-populating the value of HTML form fields. |