为什么我的Django模板没有正确计算我收藏的长度?

时间:2013-05-14 08:00:37

标签: django django-views django-templates

在我看来:

posts = Post.objects.all()
print len(posts)

打印' 2'

在我的模板中

{{ posts|length }}

结果为' 0'在浏览器中

1 个答案:

答案 0 :(得分:1)

1)您确定,帖子在模板中可用吗? 2)为什么不使用计数?