當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Django ListView用法及代碼示例


本文介紹 django.views.generic.list.ListView 的用法。

聲明

class django.views.generic.list.ListView

表示對象列表的頁麵。

在執行此視圖時,self.object_list 將包含視圖正在操作的對象列表(通常但不一定是查詢集)。

祖先 (MRO)

此視圖從以下視圖繼承方法和屬性:

方法流程圖

  1. setup()
  2. dispatch()
  3. http_method_not_allowed()
  4. get_template_names()
  5. get_queryset()
  6. get_context_object_name()
  7. get_context_data()
  8. get()
  9. render_to_response()

示例views.py

from django.utils import timezone
from django.views.generic.list import ListView

from articles.models import Article

class ArticleListView(ListView):

    model = Article
    paginate_by = 100  # if pagination is desired

    def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)
        context['now'] = timezone.now()
        return context

示例 myapp/urls.py

from django.urls import path

from article.views import ArticleListView

urlpatterns = [
    path('', ArticleListView.as_view(), name='article-list'),
]

示例 myapp/article_list.html

<h1>Articles</h1>
<ul>
{% for article in object_list %}
    <li>{{ article.pub_date|date }} - {{ article.headline }}</li>
{% empty %}
    <li>No articles yet.</li>
{% endfor %}
</ul>

如果您使用分頁,您可以從分頁文檔中調整示例模板。

相關用法


注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.views.generic.list.ListView。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。