gpt4 book ai didi

序列化程序上的 Django Rest Framework 条件字段

转载 作者:行者123 更新时间:2023-12-04 14:44:01 25 4
gpt4 key购买 nike

我有一个引用 Generic Relation 的模型我想以详细的方式序列化。

class AType(models.Model):
foo = CharField()


class BType(models.Model):
bar = PositiveIntegerField()


class ToSerialize(models.Model):
scope_limit = models.Q(app_label="app", model="atype") | \
models.Q(app_label="app", model="btype")
content_type = models.ForeignKey(ContentType, limit_choices_to=scope_limit)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')

我希望 ToSerialize View 集的列表方法的 JSON 如下所示:
[
{
"atype": { "id": 1, "foo": "a" }
},
{
"atype": { "id": 2, "foo": "b" }
},
{
"btype": { "id": 1, "bar": "1" }
},
{
"btype": { "id": 2, "bar": "2" }
}
]

有没有办法让 ToSerialize 对象的 View 集的序列化程序根据 content_type/object_id 产生“条件字段”来实现这种效果?

最佳答案

使用 SerializeMethodField :

class YourSerializer(serializers.ModelSerializer):
your_conditional_field = serializers.SerializerMethodField()

class Meta:
model = ToSerialize

def get_your_conditional_field(self, obj):
# do your conditional logic here
# and return appropriate result
return obj.content_type > obj.object_id

关于序列化程序上的 Django Rest Framework 条件字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27947868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com