在我的Mako模板中,我有:
<p>${item.addDate}</p>
它返回:
2012年12月27日19:50:00
但我想得到:
2012年12月27日19:50
Mako有漂亮的过滤器,格式函数吗?
最佳答案
根据google,strftime
应该做的工作:
${post.date.strftime('%Y/%m/%d %H:%M')
因此,根据谷歌的说法:
<%! from time import strftime as time %>
It is the ${"%d of %B" | time}
关于python - 使用Mako模板格式化日期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14101045/