我有一个名为data
的ValuesQuerySet。
我正在尝试获取每个对象的所有类型的摘要计数
data.values('type')
生成此输出:
[{'type': u'internal'}, {'type': u'internal'}, {'type': u'external'}, {'type': u'external'}]
我希望得到这样的细分(可以有更多的内部'和'外部'作为选择。这可能有多达20种不同类型:
internal: 2
external: 2
我正在尝试这个,但它只是返回一个空字典......
data.values('type').aggregate(Count('type'))
Annotate也产生了不受欢迎的结果:
data.values('type').annotate(Count('type'))
[{'type': u'internal', 'type_count': 1}, {'type': u'internal', 'type_count': 1}, {'type': u'external', 'type_count': 1}, {'type': u'external', 'type_count': 1}]
Models.py
class Purchase(models.Model):
type = models.ForeignKey(Types)
答案 0 :(得分:5)
lists = ModelName.objects.values('type').annotate(count=Count('type'))
在html中:
{% for list in lists %}
{{list.type}} - {{list.count}}<br/>
{% endfor %}
测试:
{{lists}}
//don't use forloop yet. This will tests if the above query produce data or it is empty
<强>更新:强>
def view_name(request):
lists = ModelName.objects.values_list('type', flat=True).distinct()
types = []
for list in lists:
type_count = ModelName.objects.filter(type=list.type).count()
types.append({'type': list.type, 'count': type_count})
return render(request, 'page.html', {
'types': types,
})
{% for type in types %}
{{type.type}} - {{type.count}}
{% endfor %}
答案 1 :(得分:1)
他们是几种方法,让我们想要将结果放在字典中,简单的方法是:
results = { 'internal': data.filter( value = 'internal' ).count(),
'external': data.filter( value = 'external' ).count() }
对于少数查询集,您可以使用itertools,这将工作从数据库层转换为django层。这意味着它只是一个小查询集的解决方案。
from itertools import groupby
results = groupby(data.all(), lambda x: x.type)