查询 django 日期

发布于 2024-10-02 15:33:19 字数 283 浏览 2 评论 0原文

在,模型中我有

         class pick:
          t1 =models.DateTimeField(auto_now_add=True)

视图。

日期变量的格式为 s="2010-01-01"

         How o query the for the date now

          pick.objects.filter(t1=date(s))

In ,models i have

         class pick:
          t1 =models.DateTimeField(auto_now_add=True)

In views.

The date variable is in the format s="2010-01-01"

         How o query the for the date now

          pick.objects.filter(t1=date(s))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┼── 2024-10-09 15:33:19

datetime.date() 的预期参数为 datetime.date(year,month,day),因此使用 s 创建日期对象将不起作用。但是您可以直接在过滤器中使用日期字符串

picks_at_date = pick.objects.filter(t1=s)

,或者当您尝试查找该日期之前或之后的任何内容

picks_before_date = pick.objects.filter(t1__lt=s)

picks_after_date = pick.objects.filter(t1__gt=s).

Django 的“进行查询”文档 使用过滤器检索特定对象也有一些关于使用日期字段进行查询的很好的示例。

datetime.date() expected arguments are datetime.date(year, month, day), so creating a date object with s won't work. But you can use the date string directly in filter like

picks_at_date = pick.objects.filter(t1=s)

or when you try to find anything before or after that date

picks_before_date = pick.objects.filter(t1__lt=s)

or

picks_after_date = pick.objects.filter(t1__gt=s).

Django's "Making queries" Docs at Retrieving specific objects with filters has some good examples on making queries with date fields as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文