在/ accounts / password_reset /下的NoReverseMatch

时间:2018-09-12 10:56:34

标签: django python-3.x authentication django-2.1

我正在为我正在处理的Django项目进行身份验证。由于某些原因,我遇到了错误Reverse for 'password_reset_done' not found. 'password_reset_done' is not a valid view function or pattern name.,我将所有身份验证都放在了accounts应用中。

以下是基本urls.py文件的内容:

from django.contrib import admin
from django.urls import path, include
from accounts import urls as accounts_urls
from core import urls as core_urls
from core import views

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', views.home, name='home'),
    path('accounts/', include(accounts_urls, namespace='accounts')),
    path('core/', include(core_urls, namespace='core')),
]

这是urls.py文件的内容(在帐户应用中):

from django.urls import path, reverse_lazy
from django.contrib.auth import views as auth_views
from . import views as accounts_views

app_name = 'accounts'

urlpatterns = [
    path('signup/', accounts_views.signup, name='signup'),
    path('login/', auth_views.LoginView.as_view(template_name='accounts/login.html'), name='login'),
    path('logout/', auth_views.LogoutView.as_view(), name='logout'),
    path('account_activation_sent/', accounts_views.account_activation_sent, name='account_activation_sent'),
    path('activate/<uidb64>/<token>/', accounts_views.activate, name='activate'),
    path('password_reset/', auth_views.PasswordResetView.as_view(
        template_name='accounts/password_reset.html',
        email_template_name='accounts/password_reset_email.html',
        subject_template_name='accounts/password_reset_subject.txt'
    ), name='password_reset'),
    path('password_reset/done/', auth_views.PasswordResetDoneView.as_view(
        template_name='accounts/password_reset_done.html'
    ), name='password_reset_done'),
    path('password_reset/<uidb64>/<token>/', auth_views.PasswordResetConfirmView.as_view(
        template_name='accounts/password_reset_confirm.html'
    ), name='password_reset_confirm'),
    path('password_reset/complete/', auth_views.PasswordResetCompleteView.as_view(
        template_name='accounts/password_reset_complete.html'
    ), name='password_reset_complete'),
]

这是accounts/templates目录结构:

  • 模板/
    • 帐户/
      • password_reset.html
      • password_reset_email.html
      • password_reset_done.html
      • password_reset_confirm.html
      • password_reset_complete.html

到目前为止,我没有发现任何错误。任何大开眼界将不胜感激,谢谢!

3 个答案:

答案 0 :(得分:1)

由于password_reset_doneaccounts下已命名,因此您需要反转accounts:password_reset_done

希望这会有所帮助。

答案 1 :(得分:1)

Django auth视图不使用名称空间when reversing urls。这意味着它不适用于您当前的网址,因为您有app_name = 'account'namespace='accounts'

最简单的解决方案是删除accounts应用程序名称和名称空间(或将密码URL模式移动到另一个没有名称空间的urls.py中。

可以使用名称空间对密码视图进行子类化和反向操作,但是需要进行很多更改。

答案 2 :(得分:1)

里海,我相信,您找到了解决我问题的方法,

从Django 2.0迁移到2.1,我很努力地尝试将密码应用程序更正为新的必需配置...我无法理解问题...我的解决方案没有得到改进,但这是我的URL代码,并且确实确认引入“ success_url = reverse_lazy”对您的解决方案有效。

path('password_reset/', 
    PasswordResetView.as_view(
    template_name='app98/password_reset.html',
    email_template_name='app98/password_reset_email.html',
    subject_template_name='app98/password_reset_subject.txt',
    success_url=reverse_lazy('ns_app98:password_reset_done')), 
    name='password_reset'),

path('password_reset_done/', 
    PasswordResetDoneView.as_view(
    template_name='app98/password_reset_done.html'), 
    name='password_reset_done'),

path('password_reset_<uidb64>_<token>/', 
    PasswordResetConfirmView.as_view(
    template_name='app98/password_reset_confirm.html',
    success_url=reverse_lazy('app98:password_reset_complete')), 
    name='password_reset_confirm'),

path('password_reset_complete/', 
    PasswordResetCompleteView.as_view(
    template_name='app98/password_reset_complete.html'), 
    name='password_reset_complete'),

]