我想创建密码重置功能,但要更改模板。
所以我是从Django类继承的。
在插入电子邮件以重置密码后,出现以下错误:
在/ accounts / password-reset /
处的NoReverseMatch带有关键字参数的“ confirm_reset_password”的反向 找不到'{'uidb64':'','token':'4y5-9ae986836e35f95b842c'}'。 1个 尝试的模式: ['accounts \ / password-reset-confirm //(?P [0-9A-Za-z _ \-] +)/(?P [0-9A-Za-z] {1,13}-[0-9A -Za-z] {1,20})/ $']
我认为问题是'uidb64',但我不知道为什么是空的。
观看次数:
class CustomPasswordResetView(PasswordResetView):
form_class = CustomPasswordResetForm
email_template_name = 'account/password_reset_email.html'
template_name = 'account/password_reset.html'
class UserPasswordResetConfirmView(PasswordResetConfirmView):
pass
表格:
class CustomPasswordResetForm(PasswordResetForm):
email = forms.EmailField(widget=TextInputWidget)
网址:
path('password-reset/', UserPasswordResetView.as_view(), name='reset_password'),
re_path(r'^password-reset-confirm/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$',
UserPasswordResetConfirmView.as_view(), name='confirm_reset_password')
在重置模板中:
<form action="" method="post">
{% csrf_token %}
<div class="row ">
{{ form.email }}
</div>
<div class="l-action">
<input type="submit" class="button" value="Reset my password">
</div>
</form>
在电子邮件模板中:
a href="http://{{ domain }}{% url 'users:confirm_reset_password' uidb64=uidb token=token %}"
答案 0 :(得分:1)
我认为您的电子邮件模板包含错误。您写道:
a href="http://{{ domain }}{% url 'users:confirm_reset_password' uidb64=uidb token=token %}"
但是根据documentation [Django-doc],uidb64
参数应将uid
变量作为参数,因此:
a href="http://{{ domain }}{% url 'users:confirm_reset_password' uidb64=uid token=token %}"