问题:如何在Jinja2中格式化日期?

使用Jinja2,如何格式化日期字段?我知道在Python中我可以简单地做到这一点:

print(car.date_of_manufacture.strftime('%Y-%m-%d'))

但是,如何在Jinja2中格式化日期?

Using Jinja2, how do I format a date field? I know in Python I can simply do this:

print(car.date_of_manufacture.strftime('%Y-%m-%d'))

But how do I format the date in Jinja2?


回答 0

有两种方法可以做到这一点。直接的方法是简单地调用(并打印)模板中的strftime()方法,例如

{{ car.date_of_manufacture.strftime('%Y-%m-%d') }}

另一种明显更好的方法是定义自己的过滤器,例如:

from flask import Flask
import babel

app = Flask(__name__)

@app.template_filter()
def format_datetime(value, format='medium'):
    if format == 'full':
        format="EEEE, d. MMMM y 'at' HH:mm"
    elif format == 'medium':
        format="EE dd.MM.y HH:mm"
    return babel.dates.format_datetime(value, format)

(出于与i18n有关的原因,此过滤器基于babel,但您也可以使用strftime)。过滤器的优点是,您可以编写

{{ car.date_of_manufacture|datetime }}
{{ car.date_of_manufacture|datetime('full') }}

看起来更好,更易于维护。另一个常见的过滤器也是“ timedelta”过滤器,其计算结果类似于“ 8分钟前编写”。您可以使用babel.dates.format_timedelta它,并将其注册为类似于此处给出的datetime示例的过滤器。

There are two ways to do it. The direct approach would be to simply call (and print) the strftime() method in your template, for example

{{ car.date_of_manufacture.strftime('%Y-%m-%d') }}

Another, sightly better approach would be to define your own filter, e.g.:

from flask import Flask
import babel

app = Flask(__name__)

@app.template_filter()
def format_datetime(value, format='medium'):
    if format == 'full':
        format="EEEE, d. MMMM y 'at' HH:mm"
    elif format == 'medium':
        format="EE dd.MM.y HH:mm"
    return babel.dates.format_datetime(value, format)

(This filter is based on babel for reasons regarding i18n, but you can use strftime too). The advantage of the filter is, that you can write

{{ car.date_of_manufacture|datetime }}
{{ car.date_of_manufacture|datetime('full') }}

which looks nicer and is more maintainable. Another common filter is also the “timedelta” filter, which evaluates to something like “written 8 minutes ago”. You can use babel.dates.format_timedelta for that, and register it as filter similar to the datetime example given here.


回答 1

这是我在Jinja2和Flask中用于strftime的过滤器

@app.template_filter('strftime')
def _jinja2_filter_datetime(date, fmt=None):
    date = dateutil.parser.parse(date)
    native = date.replace(tzinfo=None)
    format='%b %d, %Y'
    return native.strftime(format) 

然后使用过滤器,如下所示:

{{car.date_of_manufacture|strftime}}

Here’s the filter that I ended up using for strftime in Jinja2 and Flask

@app.template_filter('strftime')
def _jinja2_filter_datetime(date, fmt=None):
    date = dateutil.parser.parse(date)
    native = date.replace(tzinfo=None)
    format='%b %d, %Y'
    return native.strftime(format) 

And then you use the filter like so:

{{car.date_of_manufacture|strftime}}

回答 2

我认为您必须为此编写自己的过滤器。它实际上是文档中自定义过滤器的示例:http : //jinja.pocoo.org/docs/api/#custom-filters

I think you have to write your own filter for that. It’s actually the example for custom filters in the documentation: http://jinja.pocoo.org/docs/api/#custom-filters


回答 3

如果您要处理较低级别的时间对象(我经常只使用整数),而又不想出于任何原因编写自定义过滤器,则我使用的一种方法是将strftime函数作为变量传递给模板,其中可以在您需要的地方调用它。

例如:

import time
context={
    'now':int(time.time()),
    'strftime':time.strftime }  # Note there are no brackets () after strftime
                                # This means we are passing in a function, 
                                # not the result of a function.

self.response.write(jinja2.render_template('sometemplate.html', **context))

然后可以在其中使用sometemplate.html

<html>
    <body>
        <p>The time is {{ strftime('%H:%M%:%S',now) }}, and 5 seconds ago it was {{ strftime('%H:%M%:%S',now-5) }}.
    </body>
</html>

If you are dealing with a lower level time object (I often just use integers), and don’t want to write a custom filter for whatever reason, an approach I use is to pass the strftime function into the template as a variable, where it can be called where you need it.

For example:

import time
context={
    'now':int(time.time()),
    'strftime':time.strftime }  # Note there are no brackets () after strftime
                                # This means we are passing in a function, 
                                # not the result of a function.

self.response.write(jinja2.render_template('sometemplate.html', **context))

Which can then be used within sometemplate.html:

<html>
    <body>
        <p>The time is {{ strftime('%H:%M%:%S',now) }}, and 5 seconds ago it was {{ strftime('%H:%M%:%S',now-5) }}.
    </body>
</html>

回答 4

您可以在没有任何过滤器的模板中像这样使用它

{{ car.date_of_manufacture.strftime('%Y-%m-%d') }}

You can use it like this in template without any filters

{{ car.date_of_manufacture.strftime('%Y-%m-%d') }}

回答 5

Google App Engine用户:如果您是从Django转到Jinja2,并希望替换日期过滤器,请注意%格式代码是不同的。

strftime%代码在此处:http : //docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior

Google App Engine users : If you’re moving from Django to Jinja2, and looking to replace the date filter, note that the % formatting codes are different.

The strftime % codes are here: http://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior


回答 6

在烧瓶中,用通天塔,我喜欢这样做:

@app.template_filter('dt')
def _jinja2_filter_datetime(date, fmt=None):
    if fmt:
        return date.strftime(fmt)
    else:
        return date.strftime(gettext('%%m/%%d/%%Y'))

在模板中使用 {{mydatetimeobject|dt}}

因此,与babel配合使用时,您可以在messages.po中指定各种格式,例如:

#: app/views.py:36
#, python-format
msgid "%%m/%%d/%%Y"
msgstr "%%d/%%m/%%Y"

in flask, with babel, I like to do this :

@app.template_filter('dt')
def _jinja2_filter_datetime(date, fmt=None):
    if fmt:
        return date.strftime(fmt)
    else:
        return date.strftime(gettext('%%m/%%d/%%Y'))

used in the template with {{mydatetimeobject|dt}}

so no with babel you can specify your various format in messages.po like this for instance :

#: app/views.py:36
#, python-format
msgid "%%m/%%d/%%Y"
msgstr "%%d/%%m/%%Y"

回答 7

有一个jinja2扩展名可以使用,只需要pip安装即可(https://github.com/hackebrot/jinja2-tim

There is a jinja2 extension you can use just need pip install (https://github.com/hackebrot/jinja2-time)


声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。