我正在尝试使用如下通用视图显示最新的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
  
  切片包含以下内容后,无法过滤查询
  被采取。


我能做什么?

最佳答案

num_latest: The number of latest objects to send to the template context. By default, it's 15.

关于python - 如何使用django.views.generic.date_based.archive_index获取前五个对象?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3383693/

10-12 16:29