-
按日期显示 “latest” 对象的顶级索引页面。除非您将
allow_future
设置为True
,否则不包括日期在future
中的对象。祖先 (MRO)
django.views.generic.list.MultipleObjectTemplateResponseMixin
django.views.generic.base.TemplateResponseMixin
django.views.generic.dates.BaseArchiveIndexView
django.views.generic.dates.BaseDateListView
- MultipleObjectMixin
django.views.generic.dates.DateMixin
- View
语境
除了
django.views.generic.list.MultipleObjectMixin
django.views.generic.dates.BaseDateListView
date_list
:一个QuerySet
queryset
具有可用对象的所有年份,表示为datetime.datetime
注意
- 使用
latest
的默认context_object_name
。 - 使用
_archive
的默认template_name_suffix
。 - 默认按年提供
date_list
,但可以使用属性date_list_period
将其更改为月或日。这也适用于所有子类视图。
示例 myapp/urls.py:
from django.urls import path from django.views.generic.dates import ArchiveIndexView from myapp.models import Article urlpatterns = [ path('archive/', ArchiveIndexView.as_view(model=Article, date_field="pub_date"), name="article_archive"), ]
示例 myapp/article_archive.html:
<ul> {% for article in latest %} <li>{{ article.pub_date }}: {{ article.title }}</li> {% endfor %} </ul>
这将输出所有文章。
本文介绍 django.views.generic.dates.ArchiveIndexView
的用法。
声明
class ArchiveIndexView
相关用法
- Python Django Area用法及代码示例
- Python Django ArraySubquery用法及代码示例
- Python Django Area.__getattr__用法及代码示例
- Python Django Area.unit_attname用法及代码示例
- Python Django ArrayAgg.ordering用法及代码示例
- Python Django ArrayField.base_field用法及代码示例
- Python Tweepy API.mentions_timeline()用法及代码示例
- Python Tweepy API.get_user()用法及代码示例
- Python Tweepy API.list_timeline()用法及代码示例
- Python Django ACos用法及代码示例
- Python Tweepy API.add_list_members()用法及代码示例
- Python Django Abs用法及代码示例
- Python Django AuthenticationForm.confirm_login_allowed用法及代码示例
- Python Tweepy API.create_block()用法及代码示例
- Python Django ATan用法及代码示例
- Python Tweepy API.trends_closest()用法及代码示例
- Python Tweepy API.send_direct_message()用法及代码示例
- Python Tweepy API.destroy_status()用法及代码示例
- Python Tweepy API.destroy_saved_search()用法及代码示例
- Python Tweepy API.get_list()用法及代码示例
- Python Tweepy API.favorites()用法及代码示例
- Python Tweepy API.blocks_ids()用法及代码示例
- Python Tweepy API.configuration()用法及代码示例
- Python Tweepy API.lists_memberships()用法及代码示例
- Python Tweepy API.home_timeline()用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.views.generic.dates.ArchiveIndexView。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。