我正在尝试使用如下通用视图显示最新的5个帖子:
urlpatterns = patterns('',
(r'^$', 'django.views.generic.date_based.archive_index',
{
'queryset': Post.objects.all()[:5],
'date_field': 'created_on',
'template_name': 'index.html'}
})
但是我得到了
/
处的AssertionError切片无法过滤查询 已被带走。
我该怎么办?
答案 0 :(得分:2)
num_latest: The number of latest objects to send to the template context. By default, it's 15.