按日期时间的月/日排序 Django QuerySet?
我有一个人员列表,每个人都有一个出生日期,可以预见地存储在 DateField
中。我正在尝试创建一个这些人的列表 - 按他们出生的月和日排序(不考虑年份) - 以获得某种“谁的生日是即将出现”显示。
我似乎无法通过此人的 datetime.month
值来订购 QuerySet
。有没有什么方法可以做到这一点,而不必强制使用 list()
?
预先感谢,如果问题需要澄清,请告诉我。
I have a list of people, each person having a birthdate, which is predictably stored in a DateField
. I'm trying to create a list of those people—sorted by the month and day of their birth (disregarding the year)—to have a sort of "who's birthday is coming up" display.
I can't seem to order a QuerySet
by the person's datetime.month
value. Is there any way that this could be done without having to resort to coercing to a list()
?
Thanks in advance and please let me know if the question needs clarification.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以通过在 DateField 上使用月份和日期查找名称对 QuerySet 进行排序。
使用数据库函数 提取以通过 生成额外的月份和日期列annotate 方法,然后
order_by
这些列,您可以仅按生日对QuerySet
进行排序。对于旧版
django
版本,您可以使用 QuerySet.extra(),但您必须编写数据库特定查询。MySQL
PostgreSQL
SQlite
You can sort the QuerySet by using month and day lookup names on DateField.
Use database-function Extract to generate extra month and day columns by annotate method, then
order_by
these columns you can sort theQuerySet
by their birthday only.For older
django
versions you can do the same using QuerySet.extra(), but you have to write database specific query.MySQL
PostgreSQL
SQlite
您可以使用
QuerySet.extra()
定义月份字段并按其排序:You can use
QuerySet.extra()
to define a month field and sort by it:较新版本的 django 可以查找 DateFields 和 DateTimeFields。
https://docs.djangoproject.com/en/1.11 /ref/models/database-functions/#extract
MyModel.objects.order_by('birthday__month', 'birthday__day')
Newer versions of django have the lookup on DateFields and DateTimeFields.
https://docs.djangoproject.com/en/1.11/ref/models/database-functions/#extract
MyModel.objects.order_by('birthday__month', 'birthday__day')
我使用 django 1.10.8 进行测试
I tested using django 1.10.8
Post.objects.all().order_by('date_posted__ 分钟').reverse()
其中 date_posted 是您在 Post 模型中使用的属性。
Post.objects.all().order_by('date_posted__minute').reverse()
where date_posted is your attribute you used in your Post model.