如何在我的模型中添加功能?
from django.db.models.functions import TruncMonth
ImportError: No module named functions
report.objects.filter(r_id=id, r_checkin_date__gte=checkin_date)
.annotate(month=ExtractMonth('timestamp'))
.values('month')
.annotate(count=Count('id'))
.values('month', 'count')
答案 0 :(得分:0)
您使用的是Django上的哪个版本:
from django.db.models.functions.datetime import TruncMonth
仅适用于版本1.10和开发
这是源代码link