-
表示對象列表的頁麵。
在執行此視圖時,
self.object_list
將包含視圖正在操作的對象列表(通常但不一定是查詢集)。祖先 (MRO)
此視圖從以下視圖繼承方法和屬性:
django.views.generic.list.MultipleObjectTemplateResponseMixin
django.views.generic.base.TemplateResponseMixin
django.views.generic.list.BaseListView
- MultipleObjectMixin
- View
方法流程圖
setup()
dispatch()
http_method_not_allowed()
get_template_names()
get_queryset()
get_context_object_name()
get_context_data()
get()
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>
如果您使用分頁,您可以從分頁文檔中調整示例模板。
本文介紹 django.views.generic.list.ListView
的用法。
聲明
class django.views.generic.list.ListView
相關用法
- Python List remove()用法及代碼示例
- Python List insert()用法及代碼示例
- Python List clear()用法及代碼示例
- Python List reverse()用法及代碼示例
- Python List append()用法及代碼示例
- Python List cmp()用法及代碼示例
- Python List pop()用法及代碼示例
- Python List index()用法及代碼示例
- Python List sort()用法及代碼示例
- Python List list()用法及代碼示例
- Python List max()用法及代碼示例
- Python List count()用法及代碼示例
- Python List len()用法及代碼示例
- Python List min()用法及代碼示例
- Python List copy()用法及代碼示例
- Python List extend()用法及代碼示例
- Python Django Library.filter用法及代碼示例
- Python Django Library.inclusion_tag用法及代碼示例
- Python Django LineString.y用法及代碼示例
- Python Django LiveServerTestCase用法及代碼示例
- Python Django LinearRing用法及代碼示例
- Python Django LineString.x用法及代碼示例
- Python Django LineString用法及代碼示例
- Python Django Library.simple_tag用法及代碼示例
- Python Django LineString.z用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.views.generic.list.ListView。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。