gpt4 book ai didi

python - Django 错误 - 使用参数 'password_reset_confirm' 和关键字参数 ' 反转 '()'

转载 作者:太空狗 更新时间:2023-10-30 02:58:44 25 4
gpt4 key购买 nike

我正在尝试在我的应用程序中创建重置密码功能,并在我的 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’”我已经阅读了一些建议,但没有一个有效。谁能帮我解决这个错误?

见下图:

enter image description here

最佳答案

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/

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