Django-如何按带注释的值进行过滤

时间:2019-06-18 06:43:40

标签: python django

请考虑以下模型。我想根据最新的时间戳来过滤对象,时间戳可能是created_atupdated_at。由于某些原因,filter函数无法识别带注释的字段,并且我很难找到合适的代码示例来完成此简单操作。

错误消息是“无法将关键字'timestamp'解析为字段。”

如何根据更新的日期在7天内检索Example对象。

from datetime import timedelta
from django.db import models
from django.db.models.functions import Greatest
from django.utils import timezone


class Example(models.Model):

    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(null=True)

    @property
    def recently_updated(self):
        return Event.objects
            .annotate(timestamp=Greatest('created_at', 'updated_at'))
            .filter(timestamp__gte=timezone.now() - timedelta(days=7))
            .order_by('-timestamp')

Django 1.11

1 个答案:

答案 0 :(得分:0)

只需设置updated_at = models.DateTimeField(auto_now=True, null=True),这样第一次插入记录时,updated_at和created_at将是相同的,因此,您可以在updated_at上运行查询:

Event.objects.filter(updated_at__gte=timezone.now() - timedelta(days=7)).order_by('-timestamp')