django 1.6.5密码重置电子邮件检查validlink

时间:2015-12-07 12:12:25

标签: python django

我正在遵循blog中的确切步骤。

也进行了修改:

1) the url template tag syntax as noted above by "F L" 
2) uidb36 in the urls.py and email template both should be uidb64 per https://docs.djangoproject.com/en/1.6/releases/1.6/#django-contrib-auth-password-reset-uses-base-64-encoding-of-user-pk

当我输入电子邮件地址时,我收到了邮件,在输入网址后:http://localhost:8000/user/password/reset/NDI-47h-e1fbd1df48ce2aa05de4/,我总是收到消息:

Password reset unsuccessful
The password reset link was invalid, 
possibly because it has already been used. 
Please request a new password reset.

即validlink总是失败。为什么呢?

共享相关的代码块:urls.py:

urlpatterns = patterns('',
                       url(r'^admin/', include(admin.site.urls)),
                       url(r'^user/password/reset/$', 
                           'django.contrib.auth.views.password_reset', 
                           {'post_reset_redirect' : '/user/password/reset/done/'}, name="password_reset"),
                       (r'^user/password/reset/done/$',
                        'django.contrib.auth.views.password_reset_done'),
                       (r'^user/password/reset/(?P<uidb64>[0-9A-Za-z_\-]+)-(?P<token>.+)/$', 
                        'django.contrib.auth.views.password_reset_confirm', 
                        {'post_reset_redirect' : '/user/password/done/'}),
                       (r'^user/password/done/$', 
                        'django.contrib.auth.views.password_reset_complete'),

在我的模板文件夹中,创建了一个名为registration的文件夹:我的模板文件夹的结构: / templates $ find

.
./registration
./registration/password_reset_form.html
./registration/password_reset_confirm.html
./registration/password_reset_email.html
./registration/password_reset_done.html
./registration/password_reset_complete.html
./admin

password_reset_email.html:

{% load i18n %}
{% comment %}
{% load url from future %}
{% endcomment %}
{% autoescape off %}

You're receiving this e-mail because you requested a password reset for your user account at {{ site_name }}.

Please go to the following page and choose a new password:
{% block reset_link %}
{{ 'http' }}://{{ 'localhost:8000' }}{% url 'django.contrib.auth.views.password_reset_confirm' uidb64=uid token=token %}
{% endblock %}

Your username, in case you've forgotten: {{ user.username }}

Thanks for using our site!

The {{ site_name }} team.

blog

中的所有其他模板

1 个答案:

答案 0 :(得分:1)

我猜你的网址中的-是个问题,因为你的第一个正则表达式组会贪婪地匹配-

请注意,-与第一个正则表达式匹配,但您将其用作分隔符。

而不是此网址格式:

r'^user/password/reset/(?P<uidb64>[0-9A-Za-z_\-]+)-(?P<token>.+)/$'

试试这个:

r'^user/password/reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>.+)/$'

不同之处在于我们将匹配组之间的-更改为/,这是第一组中不匹配的字符。