嵌套序列化程序中的平面值列表

时间:2018-03-07 10:14:48

标签: python django-rest-framework

假设我有如下序列化程序。

class AbcSerializer(serializers.ModelSerializer):
    class Meta:
        model = Abc
        fields = ('a',) # there could be other fields too in model.


class XyzSerializer(serializers.ModelSerializer):

    a = AbcSerializer(many=True)
    class Meta:
        model = Xyz
        fields = '__all__'  

这给了我像

这样的词典列表
[{a: 1}, {a: 2}]  

是否有像flat=True这样的参数,它会给我一个像

这样的平面列表
[1, 2]

1 个答案:

答案 0 :(得分:1)

Asia/Kolkata