27

有没有办法在 django 中获取日期少于一个月前的所有对象。

就像是:

items = Item.objects.filter(less than a month old).order_by(...)
4

3 回答 3

54

你对“月”的定义是什么?30天?31天?过去,这应该这样做:

from datetime import datetime, timedelta
last_month = datetime.today() - timedelta(days=30)
items = Item.objects.filter(my_date__gte=last_month).order_by(...)

利用gte字段查找的优势。

于 2009-06-11T05:50:09.693 回答
3

做这个:

from datetime import datetime, timedelta

def is_leap_year(year): 
    if year % 100 == 0:
        return year % 100 == 0

    return year % 4 == 0

def get_lapse():
    last_month = datetime.today().month
    current_year = datetime.today().year

    #is last month a month with 30 days?
    if last_month in [9, 4, 6, 11]:
        lapse = 30

    #is last month a month with 31 days?
    elif last_month in [1, 3, 5, 7, 8, 10, 12]:
        lapse = 31

    #is last month February?
    else:
        if is_leap_year(current_year):
            lapse = 29
        else:
            lapse = 30

    return lapse

last_month_filter = datetime.today() - timedelta(days=get_lapse())

items = Item.objects.filter(date_created__gte=last_month_filter)

这将满足我能想到的所有情况。

于 2020-05-17T23:42:32.890 回答
1
items = Item.objects.filter(created_date__gte=aMonthAgo)

其中 aMonthAgo 将由 datetime 和 timedelta 计算。

于 2009-06-11T05:51:41.687 回答