gpt4 book ai didi

python - 在Django中按今天的日期查询日期时间

转载 作者:IT老高 更新时间:2023-10-28 21:55:51 33 4
gpt4 key购买 nike

我正在为一个对象在数据库中保存 datetime。我想查询数据库并从今天的 date 中选择任何内容,而不是 datetime。

最简单的方法是什么?这不起作用:

invoice_for_today = Invoice.objects.get(user=user, date=date.today())

最佳答案

我记得有计划添加一个 __date 字段查找以使这更容易,但因为它的“标准”方式是

today_min = datetime.datetime.combine(datetime.date.today(), datetime.time.min)
today_max = datetime.datetime.combine(datetime.date.today(), datetime.time.max)
Invoice.objects.get(user=user, date__range=(today_min, today_max))

关于python - 在Django中按今天的日期查询日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7217811/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com