1
有沒有辦法在以下做一個 Django查詢?django註釋基於屬性的queryset
MyModel.filter(attr=a).values('attr','fields','of','interest').annotate(count=Count('id'))
MyModel.filter(attr=b).values('attr','fields','of','interest').annotate(count=Count('id'))
編輯: 我需要單獨計數a和b。 MyModel.filter(attr__in=(a,b))...
或MyModel.filter(Q(attr=a)|Q(attr=b))...
不會工作我猜。