我一直在尝试使用django-rest-auth在DRF中设置密码重置功能。早些时候我收到错误 TemplateDoesNotExist:registration / password_reset_email.html 我通过添加以下代码解决了
的 serializer.py 的
from rest_auth.serializers import PasswordResetSerializer
from allauth.account.forms import ResetPasswordForm
class PasswordSerializer(PasswordResetSerializer):
password_reset_form_class = ResetPasswordForm
的 settings.py 的
REST_AUTH_SERIALIZERS = {
'PASSWORD_RESET_SERIALIZER': 'api.serializers.PasswordSerializer',
}
但是,现在我要进入另一个问题 - " NoReverseMatch:反向' account_reset_password_from_key'未找到。 ' account_reset_password_from_key'不是有效的视图功能或模式名称。" 。并且没有为此找到任何解决方案或解决方法。
任何帮助都将不胜感激。
答案 0 :(得分:2)
所以,最后我得到了密码重置功能。这是怎么回事 -
我们只需要一个网址 urls.py -
urlpatterns = [
url(r'^account/', include('allauth.urls')),
url(r'^rest-auth/', include('rest_auth.urls')),
# This is the only URL required for BASIC password reset functionality.
# This URL creates the confirmation link which is sent via e-mail. All of the rest
# password reset features get their reverse lookup via django-allauth and django-rest-auth.
url(r'^password-reset/confirm/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$', TemplateView.as_view(), name='password_reset_confirm'),
url(r'^rest-auth/registration/account-confirm-email/(?P<key>[-:\w]+)/$', allauthemailconfirmation,
name="account_confirm_email"),
url(r'^rest-auth/registration/', include('rest_auth.registration.urls'), name='account_signup'),
]
首先使用此URL配置在/ api / rest-auth / password / reset / 错误时引发 TemplateDoesNotExist。经过大量调试后,我发现模板的问题 - registration / password_reset_email.html 存在于Django Admin的模板目录下。这是因为我正在使用的另一个Django应用程序,它已禁用django管理应用程序。
因此,在 INSTALLED_APPS 下添加 'django.contrib.admin' 并删除序列化程序解决了这个问题。
我希望这也解决了其他问题。
PS: 调试器是您最好的朋友。 ;)