我正在使用Django-registration-redux,我希望为视图提供更多数据以呈现我的基本模板。我读了example in doc。
我的url.py
:
class MyPasswordChangeView(PasswordChangeView):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
#context['book_list'] = Book.objects.all() #example in doc
context_dict = services.get_base_data_for_views(request)
return context_dict
urlpatterns = [
...
path('accounts/password/change/', MyPasswordChangeView.as_view(
success_url=reverse_lazy('auth_password_change_done')), name='auth_password_change'),
...
]
我在services.py中有额外的数据,但是这段代码给出了错误:
name 'request' is not defined
所以context_dict
没有定义。我在哪里可以接受我的请求?主要是我需要用户(但print(user)= 'user' is not defined
)。或者我应该写另一个功能?
在基于Django类的视图的方法中,你可以使用access the request来self.request
。
class MyPasswordChangeView(PasswordChangeView):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context_dict = services.get_base_data_for_views(self.request)
return context_dict
因此,您可以使用self.request.user
访问该用户。通常你会想要使用login_required
或LoginRequiredMixin
,这样只有登录的用户才能访问视图,但在你的情况下,PasswordChangeView
会为你处理这个问题。