22

我正在努力在 Django 过滤器中逻辑地表示以下内容。我有一个“事件”模型和一个位置模型,可以表示为:

class Location(models.Model):
    name = models.CharField(max_length=255)

class Event(models.Model):
    start_date = models.DateTimeField()
    end_date = models.DateTimeField()
    location = models.ForeignKeyField(Location)

    objects = EventManager()

对于给定的位置,我想选择今天发生的所有事件。我已经通过 EventManager 中的 'bookings_today' 方法尝试了各种策略,但正确的过滤器语法让我望而却步:

class EventManager(models.Manager):
    def bookings_today(self, location_id):
        bookings = self.filter(location=location_id, start=?, end=?)

date() 失败,因为这会将时间归零,白天的时间对应用程序至关重要,日期的最小值和最大值也是如此,并将它们用作书挡。此外,还有多种可能的有效配置:

start_date < today, end_date during today
start_date during today, end_date during today
start_date during today, end_date after today

我需要编写一整套不同的选项还是有更简单优雅的方法?

4

7 回答 7

37

您将需要两个不同的datetime阈值 -today_starttoday_end

from datetime import datetime, timedelta, time

today = datetime.now().date()
tomorrow = today + timedelta(1)
today_start = datetime.combine(today, time())
today_end = datetime.combine(tomorrow, time())

今天发生的任何事情都必须在之前开始 today_end 并在之后 结束today_start,所以:

class EventManager(models.Manager):
    def bookings_today(self, location_id):
        # Construction of today_end / today_start as above, omitted for brevity
        return self.filter(location=location_id, start__lte=today_end, end__gte=today_start)

(PS有一个DateTimeField(不是DateField)被称为foo_date是令人恼火的误导 - 考虑公正startend......)

于 2012-06-29T15:15:00.037 回答
13

我看到的答案都不是时区感知的。

你为什么不这样做:

from django.utils import timezone

class EventManager(models.Manager):
    def bookings_today(self, location_id):
        bookings = self.filter(location=location_id, start__gte=timezone.now().replace(hour=0, minute=0, second=0), end__lte=timezone.now().replace(hour=23, minute=59, second=59))
于 2018-03-04T11:52:15.113 回答
7

您需要使用这样的范围:

class EventManager(models.Manager):
    def bookings_today(self, location_id):
        from datetime import datetime
        now = datetime.now()
        bookings = self.filter(location=location_id, start__lte=now, end__gte=now)
        return bookings
于 2012-06-28T13:22:16.920 回答
4

timezone.localtime(timezone.now()).date()为您提供正确的日期。

要获取今天(start今天)发生的事件:

from django.utils import timezone

class EventManager(models.Manager):
    def bookings_today(self, location_id):
        t = timezone.localtime(timezone.now())
        bookings = self.filter(location=location_id, start__year = t.year,
            start__month = t.month, start__day = t.day, )
于 2018-11-23T08:41:06.570 回答
1

我认为 exclude 是你的朋友!

today = datetime.date.today()
tomorrow = today + datetime.timedelta( days = 1 )
self.filter( location = location_id ).exclude( end_date__lt = today ).exclude( start_date__gte = tomorrow )
于 2012-06-29T10:35:36.897 回答
1

这个怎么样:pub_date__gte=datetime(2005, 1, 1)?使用_gte__lte使用链接方法限制一天内的开始和结束。

也许像self.filter(start__gte=datetime(2005, 1, 1)).filter(end__lte=datetime(2005, 1, 1)). lte代表小于或等于,gte代表大于或等于。

我在django doc中找到它。

于 2012-06-28T13:20:37.720 回答
1

我有一个建议

class Car:
      name = models.CharField()
      launched_date = models.DateTimeField()

按今天的日期过滤日期时间字段非常困难。即使您使用 timezone.now() - 您也不会得到正确的输出。因为 timezone.now() 也有时间。

datetime 字段有时间,因此即使您提供正确的日期,时间也不会匹配。

所以

最好使用 datefield 进行基于日期的过滤

class Car:
      name = models.CharField()
      launched_date = models.DateField()

问题的答案:-

   from django.utils.timezone import datetime 
    today = datetime.today()
    events_for_today = Event.objects.filter(start_date__year=today.year,
                        start_date__month=today.month,
                         start_date__day=today.day)
于 2021-05-20T10:19:38.760 回答