django:日期范围的模型过滤器
如何获取日期范围的模型过滤器。 在我使用员工司法部的项目中,我需要设计一个表格。 比如入职不到三个月、3-6个月、6-12个月、12-24个月的员工。
Depart < 3month 3-6months 6-12months 12-24months
----------------------------------------- ---- -----
A dep 4 6 6 8
------------------------------------------------------
如何在 django 中执行此过滤器。
我已经浏览过这个链接,但它令人困惑。
http://www.nerdydork.com/django-filter-model -on-date-range.html
提前致谢
How to get model filter on date ranges.
In my project using employee doj, i need to deign a table.
like employee who have joined less than three months , 3-6month, 6-12 months, 12-24 months.
Depart < 3month 3-6months 6-12months 12-24months
----------------------------------------- ---- -----
A dep 4 6 6 8
------------------------------------------------------
How to do this filter in django.
I have gone through this link ,but its confusing .
http://www.nerdydork.com/django-filter-model-on-date-range.html
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
范围过滤器的工作原理如下:
您可以将其与 datetime.timedelta 结合使用来获取月份周期。例如:
The range filter works like this:
You can use that in conjunction with
datetime.timedelta
to get month periods. For example: