ImportError:django中没有名为functions的模块

时间:2016-12-19 05:28:25

标签: python django django-models django-views django-admin

如何在我的模型中添加功能?

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') 

1 个答案:

答案 0 :(得分:0)

您使用的是Django上的哪个版本:

from django.db.models.functions.datetime import TruncMonth  仅适用于版本1.10和开发

这是源代码link