数量统计aggregate
比如统计某个会员有多少条留言?
def follow_num(self):
num=Guestbook.objects.filter(user=self.pk,status=True).aggregate(c=Count('user__membername'))
return num['c']
本文来自博客园,作者:super_ip,转载请注明原文链接:https://www.cnblogs.com/superip/p/17420420.html