📌  相关文章
📜  序列化程序中的 JSONField – Django REST 框架

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

序列化程序中的 JSONField – Django REST 框架

在 Django REST Framework 中,序列化的概念就是将 DB 数据转换为 javascript 可以使用的数据类型。每个序列化程序都带有一些将要处理的字段(条目)。例如,如果您有一个名为 Employee 的类,其字段为 Employee_id、Employee_name、is_admin 等。那么,您将需要 AutoField、CharField 和 BooleanField 来通过 Django 存储和操作数据。同样,序列化器也以相同的原理工作,并具有用于创建序列化器的字段。本文围绕 Django REST Framework 中的序列化程序中的 JSONField 展开。

JSON字段

JSONField 基本上是一个字段类,用于验证传入的数据结构是否由有效的 JSON 原语组成。在其备用二进制模式下,它将表示和验证 JSON 编码的二进制字符串。它有以下论点——

  • binary – 如果设置为 True,则该字段将输出并验证 JSON 编码的字符串,而不是原始数据结构。默认为假。
  • 编码器- 使用此 JSON 编码器序列化输入对象。默认为无。

句法 -

field_name = serializers.JSONField(*args, **kwargs)

如何在序列化器中使用 JSONField?

为了解释 JSONField 的用法,让我们使用来自 – How to Create a basic API using Django Rest Framework? 的相同项目设置。现在您的项目中有一个名为 serializers 的文件,让我们创建一个以 JSONField 作为字段的序列化程序。

Python3
# import serializer from rest_framework
from rest_framework import serializers
 
class Geeks(object):
    def __init__(self, json_data):
        self.json_data = json_data
 
# create a serializer
class GeeksSerializer(serializers.Serializer):
    # initialize fields
    json_data = serializers.JSONField()


现在让我们创建一些对象并尝试序列化它们并检查它们是否真的在工作,运行,-

Python manage.py shell

现在,在 shell 中运行以下Python命令

# create a json object
>>> import json
>>> x = json.dumps({"name":"Naveen", "Age":"21"})
>>> x
'{"name": "Naveen", "Age": "21"}'

# import everything from serializers
>>> from apis.serializers import *

# create a object of type Geeks
>>> obj = Geeks(x)

# serialize the object
>>> serializer = GeeksSerializer(obj)

# print serialized data
>>> serializer.data
{'json_data': '{"name": "Naveen", "Age": "21"}'}

这是终端上所有这些操作的输出 - jsonfield-in-serializers-Django-REST-Framework

JSONField 验证

请注意,这些字段的主要座右铭是传递验证,例如 JSONField 仅将数据验证为 JSON。让我们检查一下这些验证是否有效——

# Create a dictionary and add invalid values
>>> data = {}
>>> data['json_data'] = x

# dictionary created
>>> data
{'json_data': '{"name": "Naveen", "Age": "21"}'}

# deserialize the data
>>> serializer = GeeksSerializer(data=data)

# check if data is valid
>>> serializer.is_valid()
True

# check the errors
>>> serializer.errors
{}

这是这些命令的输出,清楚地显示 json_data 有效 – JSONField-in-serializers

高级概念

验证是反序列化而不是序列化的一部分。如前所述,序列化是将已经生成的数据转换为另一种数据类型的过程,因此不需要这些默认验证。反序列化需要验证,因为数据需要保存到数据库或指定的任何其他操作。因此,如果您使用这些有效的字段序列化数据。

序列化器字段中的核心参数

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

ArgumentDescription
read_onlySet 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_onlySet 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.
requiredSetting this to False also allows the object attribute or dictionary key to be omitted from output when serializing the instance.
defaultIf set, this gives the default value that will be used for the field if no input value is supplied.
allow_nullNormally 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.
sourceThe name of the attribute that will be used to populate the field.
validatorsA list of validator functions which should be applied to the incoming field input, and which either raise a validation error or simply return.
error_messagesA dictionary of error codes to error messages.
labelA short text string that may be used as the name of the field in HTML form fields or other descriptive elements.
help_textA text string that may be used as a description of the field in HTML form fields or other descriptive elements.
initialA value that should be used for pre-populating the value of HTML form fields.