将修改后的数据返回到模板
当我将查询集数据返回到模板时,我需要修改它。
例如, model.objects.all() 返回一个日期(带有其他字段),但我还想返回自该日期过去以来的天数。这样,在模板中,我可以说“您上次登录是在 4 天前”。
最好的方法是什么?
I need to amend QuerySet data when i return it to a template.
for example, model.objects.all() returns a date (with other fields), but i also want to return the number of days since that date has passed. This is so that in the template, i can say "you last logged in 4 days ago".
What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个内置的 模板过滤器 可以执行此操作:
但通常对于这类事情,最简单的方法可能是在模型上定义自定义方法:
There's a built-in template filter to do this:
But generally for this sort of thing, the easiest way is probably to define a custom method on the model: