我刚刚从旧版本将我的django安装更新为1.6。
我的urls.py文件包含以下内容:
url(r'^user/password/$','django.contrib.auth.views.password_change',name='password_change'),
url(r'^user/password/done/$','django.contrib.auth.views.password_change_done',name='password_change_done'),
url(r'^user/password/reset/$', 'django.contrib.auth.views.password_reset', name='password_reset'),
url(r'^user/password/password/reset/done/$', 'django.contrib.auth.views.password_reset_done', name='password_reset_done'),
url(r'^user/password/reset/complete/$', 'django.contrib.auth.views.password_reset_complete', name='password_reset_complete'),
#url(r'^user/password/reset/confirm/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm', name='password_reset_confirm'),
url(r'^user/password/reset/confirm/(?P<uidb36>[0-9A-Za-z_\-]+)/(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm_uidb36', name='password_reset_confirm'),
尝试允许用户重置密码,但是在提交电子邮件地址时出现以下错误:
NoReverseMatch: Reverse for 'django.contrib.auth.views.password_reset_confirm' with arguments '()' and keyword arguments '{u'uidb36': 'xxxxx', u'token': u'xxxxxxxxxxxxx'}' not found. 0 pattern(s) tried: []
(问题的x已被更改)
django.contrib.auth.views.password_reset_confirm def在这里:
# Doesn't need csrf_protect since no-one can guess the URL
@sensitive_post_parameters()
@never_cache
def password_reset_confirm(request, uidb64=None, token=None,
template_name='registration/password_reset_confirm.html',
token_generator=default_token_generator,
set_password_form=SetPasswordForm,
post_reset_redirect=None,
current_app=None, extra_context=None):
"""
View that checks the hash in a password reset link and presents a
form for entering a new password.
"""
UserModel = get_user_model()
assert uidb64 is not None and token is not None # checked by URLconf
if post_reset_redirect is None:
post_reset_redirect = reverse('password_reset_complete')
else:
post_reset_redirect = resolve_url(post_reset_redirect)
try:
uid = urlsafe_base64_decode(uidb64)
user = UserModel._default_manager.get(pk=uid)
except (TypeError, ValueError, OverflowError, UserModel.DoesNotExist):
user = None
if user is not None and token_generator.check_token(user, token):
validlink = True
if request.method == 'POST':
form = set_password_form(user, request.POST)
if form.is_valid():
form.save()
return HttpResponseRedirect(post_reset_redirect)
else:
form = set_password_form(None)
else:
validlink = False
form = None
context = {
'form': form,
'validlink': validlink,
}
if extra_context is not None:
context.update(extra_context)
return TemplateResponse(request, template_name, context,
current_app=current_app)
当使用注释的url而不是它下面的url时,会出现以下错误:
NoReverseMatch: Reverse for 'django.contrib.auth.views.password_reset_confirm' with arguments '()' and keyword arguments '{u'uidb36': 'xxxxx', u'token': u'xxxxxxxxxxxxxx'}' not found. 1 pattern(s) tried: ['user/password/reset/confirm/(?P<uidb64>[0-9A-Za-z_\\-]+)/(?P<token>.+)/$']
答案 0 :(得分:3)
视图的第一个关键字参数名称为uidb64
,但您在关键字参数dict中传递uidb36
。更改您的网址格式并使用评论版。方法签名在1.6版中已更改。
再次查看您的错误消息,我认为这不是您的网址配置中的问题,而是在您使用反向URL解析的视图或模板中。这是django.core.urlresolvers.reverse
方法或url
模板标记。您可能正在通过密钥uidb36
传递关键字参数,需要将其更改为uidb64
。
答案 1 :(得分:0)
被修改
为什么这条线路被评论? :
#url(r'^user/password/reset/confirm/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm', name='password_reset_confirm'),
答案 2 :(得分:0)
我发现了这里发生了什么。
我的模板文件夹中有一个注册/文件夹,其代码仅支持以前的版本。所以我用1.6.5模板文件更新了它。
另外,不更新管理文件会导致问题。