繁体   English   中英

Django REST to_representation:序列化器字段最后出现

[英]Django REST to_representation: Have serializer fields appear last

我有以下序列化程序 class:

class DataLocationSerializer(QueryFieldsMixin, serializers.ModelSerializer):

    def create(self, validated_data):
        pass

    def update(self, instance, validated_data):
        pass

    class Meta:
        model = MeasurementsBasic
        fields = ['temp', 'hum', 'pres', 'co', 'no2',
                            'o3', 'so2']

    def to_representation(self, instance):
        representation = super().to_representation(instance)
        representation['timestamp'] = instance.time_received

        return representation

数据在 JSON 文件中返回,其结构如下:

{
    "source": "ST",
    "stations": [
        {
            "station": "ST1",
            "data": [
                {
                    "temp": -1.0,
                    "hum": -1.0,
                    "pres": -1.0,
                    "co": -1.0,
                    "no2": -1.0,
                    "o3": -1.0,
                    "so2": null,
                    "timestamp": "2021-07-04T21:00:03"                  
                }
            ]
        }
    ]
}

我怎样才能使时间戳出现在序列化程序的字段之前?

创建一个新字典:

def to_representation(self, instance):
    representation = super().to_representation(instance)
    return {'timestamp': instance.time_received, **representation }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM