具有自定义JSON响应的序列化器

时间:2019-10-07 20:59:39

标签: django django-rest-framework

我有以下序列化程序示例:

    class CallSerializer(serializers.Serializer):
        call_status = serializers.BooleanField()
        call_type = serializers.CharField()
        weight = serializers.IntegerField()

如何获得包含结果的数据的响应:

{
    "results": [
        {
            "call_status": True,
            "call_type": "open",
            "weight": 10,
        },
        {
            "call_status": "data",
            "call_type": "result",
            "weight": "weight",
        },
    ],
    "data": {
        "total": "2",
        "status": "1",
    }
}

谢谢。

0 个答案:

没有答案