- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在我的应用程序中创建重置密码功能,并在我的 urls.py
中添加了以下行。
urls.py
url(r'^resetpassword/passwordsent/$', 'django.contrib.auth.views.password_reset_done', name='password_reset_done'),
url(r'^resetpassword/$', 'django.contrib.auth.views.password_reset'),
url(r'^reset/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm'),
url(r'^reset/done/$', 'django.contrib.auth.views.password_reset_complete'),
但是当我在重置密码时输入我的电子邮件 ID 时,它显示了一个我无法理解的错误。 使用参数“()”和关键字参数“反转‘password_reset_confirm’”
我已经阅读了一些建议,但没有一个有效。谁能帮我解决这个错误?
见下图:
我
最佳答案
Django 需要知道如何从 url
模板标签中使用的名称解析 URL。您应该将名称添加到此行:
url(r'^reset/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm'),
于是变成了:
url(r'^reset/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm', name='password_reset_confirm'),
在此处查看有关反向解析的更多信息:
https://docs.djangoproject.com/en/1.8/topics/http/urls/#reverse-resolution-of-urls
关于python - Django 错误 - 使用参数 'password_reset_confirm' 和关键字参数 ' 反转 '()',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33195214/
我不断收到此错误: NoReverseMatch 位于/accounts/password_reset/未找到“password_reset_confirm”的反向操作。 “password_rese
我在重置密码时遇到问题。如果我删除命名空间 app_name = 'crm' ,它会完美运行。但是当我包含 app_name = 'crm' 时,我得到了错误, 错误:找不到“password_res
嘿伙计们,我在我的网络应用程序上执行此功能以重置密码时不断收到此错误不知道为什么会这样这是我的 urls.py 代码: from django.urls import path from .views
我正在尝试使用 django-rest-auth 密码重置功能,但在 /rest-auth/password/reset/ 发出帖子请求后我收到标题中所述的错误( Traceback ),但我不明白为
我在让 password_Reset_confirm 位工作时遇到问题。 网址: (r'^password_reset/$', 'django.contrib.auth.views.password_
我正在用 django 做一个项目。在我的项目中,我需要通过电子邮件重置密码。为此,我使用了 django.contrib.auth.urls。当通过 djangos 模板时,我的测试成功了。后来我在
我正在尝试在我的应用程序中创建重置密码功能,并在我的 urls.py 中添加了以下行。 urls.py url(r'^resetpassword/passwordsent/$', 'django.co
我是一名优秀的程序员,十分优秀!