如何在模型中使用 django.contrib.humanize

And*_*uiz 4 python django humanize

我想使用django.contrib.humanize模板的外部,实际上是在模型内部,将某些短信中的某些日期人性化。

是否可以?我怎样才能做到这一点?

And*_*uiz 9

您可以导入模型中的函数:

from django.contrib.humanize.templatetags.humanize import naturalday
natural_day = naturalday(value)
Run Code Online (Sandbox Code Playgroud)