我正在尝试将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}]>
答案 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',))