Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从日期时间字段中搜索在特定小时内修改的对象。示例可能是提取其日期时间字段例如为特定日期的第 1 小时、第 3 小时等的对象。Django 过滤器提供基于年、月或日的查询。谢谢!
now=datetime.now() Model.objects.filter(field__lte=now+datetime.timedelta(days=1))
您不仅可以使用天数,还可以使用分钟、秒、小时......