我正在使用Django REST Framework嵌套序列化程序。
我有一个名为ProductSerializer的序列化程序。它是一个serializers.ModelSerializer,并在单独使用时正确生成以下输出:
{'id': 1, 'name': 'name of the product'}
我正在构建购物车/购物篮功能,我目前有以下课程:
class BasketItem:
def __init__(self, id):
self.id = id
self.products = []
和一个序列化器:
class BasketItemSerializer(serializers.Serializer):
id = serializers.IntegerField()
products = ProductSerializer(many=True)
我有一个涉及以下代码的测试用例:
products = Product.objects.all() # gets some initial product data from a test fixture
basket_item = BasketItem(1) # just passing a dummy id to the constructor for now
basket_item.products.append(products[0])
basket_item.products.append(product1[1])
ser_basket_item = BasketItemSerializer(basket_item)
上面的产品是models.Model。现在,当我做的时候
print(ser_basket_item.data)
{'id': 1, 'products': [OrderedDict([('id', 1), ('name', 'name of the product')]), OrderedDict([('id', 2), ('name', 'name of the product')])]}
我的期望更像是:
{
'id': 1,
'products': [
{'id': 1, 'name': 'name of the product'}
{'id': 2, 'name': 'name of the product'}
]
}
你认为我哪里出错?
答案 0 :(得分:2)
一切都很好。
简单地说,为了保留订单,DRF不能使用基本词典,因为它们不保留订单。在那里你会看到一个OrderedDict。
您的渲染器会处理并输出正确的值。