Django queryset datetime 通过日期分组记数

Django queryset 通过 is_cooperated_changed 字段的日期来分组记数,记住要加一个order_by 不然会没有效果

models.Anchor.objects.annotate(
                anchors_date=TruncDate('is_cooperated_changed'),
        ).values('anchors_date').order_by('anchors_date').annotate(
                anchors_count=Count('id'),
        ).values_list(
                'anchors_date', 'anchors_count'
        )