Django 1.5のクラスベースビューのURLパラメーターにアクセスするのが最善である方法はわかりません。
以下を考慮してください。
表示:
from Django.views.generic.base import TemplateView
class Yearly(TemplateView):
template_name = "calendars/yearly.html"
current_year = datetime.datetime.now().year
current_month = datetime.datetime.now().month
def get_context_data(self, **kwargs):
context = super(Yearly, self).get_context_data(**kwargs)
context['current_year'] = self.current_year
context['current_month'] = self.current_month
return context
RLCONF:
from .views import Yearly
urlpatterns = patterns('',
url(
regex=r'^(?P<year>\d+)/$',
view=Yearly.as_view(),
name='yearly-view'
),
)
ビューのyear
パラメーターにアクセスしたいので、次のようなロジックを実行できます。
month_names = [
"January", "February", "March", "April",
"May", "June", "July", "August",
"September", "October", "November", "December"
]
for month, month_name in enumerate(month_names, start=1):
is_current = False
if year == current_year and month == current_month:
is_current = True
months.append({
'month': month,
'name': month_name,
'is_current': is_current
})
上記のようなTemplateView
のサブクラスであるCBVのurlパラメーターにどのようにアクセスするのが最善であり、理想的にはこのようなロジックをどこに配置すべきか。メソッドで?
クラスベースのビューでurlパラメータにアクセスするには、self.args
またはself.kwargs
を使用して、self.kwargs['year']
を実行してアクセスします。
次のようなURLパラメータを渡す場合:
http://<my_url>/?order_by=created
self.request.GET
(self.args
にもself.kwargs
にも表示されない)を使用して、クラスベースのビューでアクセスできます:
class MyClassBasedView(ObjectList):
...
def get_queryset(self):
order_by = self.request.GET.get('order_by') or '-created'
qs = super(MyClassBasedView, self).get_queryset()
return qs.order_by(order_by)
このエレガントなソリューションを見つけました。Django 1.5以上では、指摘されているように here :
Djangoの汎用クラスベースビューは、コンテキストにビュー変数を自動的に含めるようになりました。この変数は、ビューオブジェクトを指します。
Views.pyで:
from Django.views.generic.base import TemplateView
class Yearly(TemplateView):
template_name = "calendars/yearly.html"
# No here
current_year = datetime.datetime.now().year
current_month = datetime.datetime.now().month
# dispatch is called when the class instance loads
def dispatch(self, request, *args, **kwargs):
self.year = kwargs.get('year', "any_default")
# other code
# needed to have an HttpResponse
return super(Yearly, self).dispatch(request, *args, **kwargs)
この question にあるディスパッチソリューション。
view はテンプレートコンテキスト内で既に渡されているため、実際に気にする必要はありません。テンプレートファイルyearly.htmlでは、次の方法でこれらのビュー属性にアクセスできます。
{{ view.year }}
{{ view.current_year }}
{{ view.current_month }}
rlconfを保持そのままにすることができます。
テンプレートのコンテキストに情報を取得するとget_context_data()が上書きされるため、DjangoのアクションBeanフローが何らかの形で壊れていることに注意してください。
これまでは、get_querysetメソッド内からのみこれらのurlパラメーターにアクセスできましたが、TemplateViewではなくListViewでのみ試しました。 urlパラメーターを使用してオブジェクトインスタンスの属性を作成し、get_context_dataでその属性を使用してコンテキストを設定します。
class Yearly(TemplateView):
template_name = "calendars/yearly.html"
current_year = datetime.datetime.now().year
current_month = datetime.datetime.now().month
def get_queryset(self):
self.year = self.kwargs['year']
queryset = super(Yearly, self).get_queryset()
return queryset
def get_context_data(self, **kwargs):
context = super(Yearly, self).get_context_data(**kwargs)
context['current_year'] = self.current_year
context['current_month'] = self.current_month
context['year'] = self.year
return context
わかりやすいようにPythonデコレータを使用するのはどうですか。
class Yearly(TemplateView):
@property
def year(self):
return self.kwargs['year']