8

在我的 mako 模板中,我有:

<p>${item.addDate}</p>

它返回:

2012-12-27 19:50:00

但我想得到:

27/12/2012 19:50

mako 有任何漂亮的过滤器、格式功能吗?

4

1 回答 1

12

根据谷歌strftime应该做的工作:

${post.date.strftime('%Y/%m/%d %H:%M')

另外,根据谷歌:

<%! from time import strftime as time %>
It is the ${"%d of %B" | time}
于 2012-12-31T11:38:57.787 回答