标签:使用 ar 数据 2014 art 问题 sp on c
django的models.py中定义了pub_date = models.DateTimeField(‘date published‘)这个字段,存入数据库中的数据格式为:2014-01-09;
我取出来的datetime的格式为:2014-01-09 00:00:00+00:00;
我的页面模板中使用<span class="date">{{ article.pub_date }}</span>。
我希望在页面中显示2014-01-09,
方法1:对取出的时间处理,article.pub_date = article.pub_date.strftime("%Y-%m-%d")
方法2:页面模板更改为,<span class="date">{{ article.pub_date|date:"Y-m-d" }}</span>
标签:使用 ar 数据 2014 art 问题 sp on c
原文地址:http://www.cnblogs.com/sandycoding/p/3969515.html