abababab 发表于 2023-5-5 16:22:40

django验证码跳转链接问题





django原来这页面没有验证码的,先跳转到 class ResetPasswordView ,现在想加了验证码后,先跳到resetpass 验证码验证后,再跳回 class ResetPasswordView 继续执行?



from django.contrib.auth.views importPasswordResetView
from django.contrib.messages.views import SuccessMessageMixin

def resetpass(request):
    if request.method == 'POST':
      reset_form = ResetPasswordForm(request.POST)
      print("reset_form.is_valid",reset_form.is_valid())
      if reset_form.is_valid():
            capt = reset_form.cleaned_data.get("captcha") #用户提交的验证码
            Hashkey = reset_form.cleaned_data.get("hashkey")
            jc=jarge_captcha(request, capt, Hashkey)
            print("profile jarge_captcha",jc,capt,Hashkey)
            if jc==False:
                reset_form.add_error('captcha',ValidationError('验证码错误'))
               
            else:
                ResetPasswordView()
   
      else:
            print("reset_form is_valid")
            email = reset_form.cleaned_data.get('email')
            messages.success(request, f'{email} Your email is valid')
    else:
      reset_form = ResetPasswordForm(instance=request.email)
    return render(request, 'users/password_reset.html', {'reset_form': reset_form})


class ResetPasswordView(SuccessMessageMixin, PasswordResetView):                  
    template_name = 'users/password_reset.html'
    email_template_name = 'users/password_reset_email.html'
    subject_template_name = 'users/password_reset_subject'
    success_message = "如果您输入的电子邮件存在一个帐户,我们会通过电子邮件向您发送设置密码的说明。 " \
                      "您应该很快就会收到它们。 如果您没有收到电子邮件," \
                      " 请确保您输入了您注册时使用的地址,并检查您的垃圾邮件文件夹。 "
    success_url = reverse_lazy('users-home')

abababab 发表于 2023-5-6 15:00:49

有大佬在么?{:10_269:}

isdkz 发表于 2023-5-6 15:28:31

要在验证码验证成功后重定向到 ResetPasswordView 并执行它,您可以将 ResetPasswordView 的调用更改为 HttpResponseRedirect 。请将 from django.http import HttpResponseRedirect 添加到您的导入列表中。然后,使用 reverse_lazy 来构建重定向到 ResetPasswordView 的URL。还要确保 ResetPasswordView 在视图中具有唯一的名称(例如,将其更改为 CustomResetPasswordView )。

此外,您还需要在 urls.py 中更新 ResetPasswordView 的URL路径名称。接下来,请按照以下步骤更新您的代码:

1. 更改 ResetPasswordView 的类名为 CustomResetPasswordView 。
2. 在 resetpass 视图中,使用 HttpResponseRedirect 替换 ResetPasswordView() 。
3. 更新 urls.py 中的 ResetPasswordView 路径名称。

这是更新后的代码:

from django.contrib.auth.views import PasswordResetView
from django.contrib.messages.views import SuccessMessageMixin
from django.http import HttpResponseRedirect
from django.urls import reverse_lazy

# ... (the rest of your imports) ...


def resetpass(request):
    # ... (the rest of your resetpass view) ...
    else:
      if jc:
            return HttpResponseRedirect(reverse_lazy('custom-password-reset'))
      else:
            reset_form.add_error('captcha', ValidationError('验证码错误'))

    # ... (the rest of your resetpass view) ...


class CustomResetPasswordView(SuccessMessageMixin, PasswordResetView):
    # ... (the rest of your CustomResetPasswordView) ...


接下来,更新 urls.py :

from django.urls import path
from . import views

urlpatterns = [
    # ... (other urlpatterns) ...

    path('reset-password/', views.CustomResetPasswordView.as_view(), name='custom-password-reset'),

    # ... (other urlpatterns) ...
]


现在,在验证码验证成功后,视图将重定向到 CustomResetPasswordView 并执行该视图。

abababab 发表于 2023-5-6 17:21:03

isdkz 发表于 2023-5-6 15:28
要在验证码验证成功后重定向到 ResetPasswordView 并执行它,您可以将 ResetPasswordView 的调用更改为 Htt ...

大佬,没看明白, url是先访问到了 class CustomResetPasswordView

怎么关联访问到 def resetpass(request)函数呢?

isdkz 发表于 2023-5-6 17:26:57

abababab 发表于 2023-5-6 17:21
大佬,没看明白, url是先访问到了 class CustomResetPasswordView

怎么关联访问到 def resetpass(req ...

抱歉刚刚的回复与您的问题无关,现在回答您的问题:

要实现您的需求,关于在跳转到 ResetPasswordView 前验证验证码,您可以对 ResetPasswordView 进行重写,覆盖其 post 方法以实现先验证验证码,验证成功后再执行密码重置操作。具体修改如下:

首先,将 resetpass 函数内容移动至 class ResetPasswordView 内,并重命名为 check_captcha .

class ResetPasswordView(SuccessMessageMixin, PasswordResetView):
    ...

    def check_captcha(self, request):
      reset_form = self.get_form()

      if reset_form.is_valid():
            capt = reset_form.cleaned_data.get("captcha") # 用户提交的验证码
            hash_key = reset_form.cleaned_data.get("hash_key")
            jc = jarge_captcha(request, capt, hash_key)
            if jc==False:
                reset_form.add_error('captcha', ValidationError('验证码错误'))
                return False
            else:
                return True
      else:
            return False


接着,在 ResetPasswordView 中重写 post 方法,在调用 super() 执行原有密码重置逻辑前,先判断 check_captcha 的返回值。

class ResetPasswordView(SuccessMessageMixin, PasswordResetView):
    ...

    def post(self, request, *args, **kwargs):
      is_captcha_valid = self.check_captcha(request)
      if is_captcha_valid:
            return super().post(request, *args, **kwargs)
      else:
            return self.render_to_response(self.get_context_data())


这样,当用户提交表单时,会先执行 check_captcha 方法检查验证码是否正确,如果正确,再执行 ResetPasswordView 的原有逻辑。
页: [1]
查看完整版本: django验证码跳转链接问题