Queryset Serialize:AttributeError:'dict'对象没有属性'_meta'

时间:2017-09-05 19:40:48

标签: python json django

我正在尝试将queryset作为JSON对象传递:

structure=Fund.objects.all().values('structure').annotate(total=Count('structure')).order_by('-total') 但是,querysets不是Json Serializable,因此我修改了我的代码:

from django.core import serializers


structure=serializers.serialize('json',Fund.objects.all().values('structure').annotate(total=Count('structure')).order_by('-total'))

但我收到此错误:AttributeError: 'dict' object has no attribute '_meta'这是我的查询集:<QuerySet [{'total': 106, 'structure': 'Corp'}, {'total': 43, 'structure': 'Trust'}, {'total': 2, 'structure': 'OM'}, {'total': 0, 'structure': None}]>

2 个答案:

答案 0 :(得分:2)

你可以尝试一下:

import json
from django.core.serializers.json import DjangoJSONEncoder

qs = Fund.objects.values('structure').annotate(total=Count('structure')).order_by('-total')
structure = json.dumps(list(qs), cls=DjangoJSONEncoder)

答案 1 :(得分:2)

Django核心序列化程序只能序列化queryset。但values()不会返回queryset,而是返回ValuesQuerySet个对象。您可以在values()方法中指定要在serialize()中使用的字段,如下所示:

from django.core import serializers

funds = Fund.objects.all().annotate(total=Count('structure')).order_by('-total')
structure = serializers.serialize('json', funds, fields=('structure',))