gpt4 book ai didi

django - 在 MonthArchiveView 中默认为当前月份

转载 作者:行者123 更新时间:2023-12-01 12:28:13 24 4
gpt4 key购买 nike

我有一个 MonthArchiveView 用于我网站上的事件。如果没有提交年份和月份(例如,如果用户仅访问/events/?

# urls.py
url(r'^events/$', EventMonthView.as_view(), name="event_month"),
url(r'^events/(?P<year>[0-9]{4})/(?P<month>[0-9]+)/$', EventMonthView.as_view(month_format='%m'), name="event_month"),

#views.py
class EventMonthView(MonthArchiveView):
template_name = "events.html"
queryset = Event.objects.all()
date_field = "date"
allow_future = True
month_format='%m'
year_format='%Y'

最佳答案

您可以覆盖 get_monthget_year 方法,以便它们返回默认值:

from django.http import Http404
from django.utils.timezone import now
from django.views.generic import MonthArchiveView


class EventMonthView(MonthArchiveView):
# ...

def get_month(self):
try:
month = super(EventMonthView, self).get_month()
except Http404:
month = now().strftime(self.get_month_format())

return month

def get_year(self):
try:
year = super(EventMonthView, self).get_year()
except Http404:
year = now().strftime(self.get_year_format())

return year

关于django - 在 MonthArchiveView 中默认为当前月份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37376756/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com