使用django-simple-captcha,当form is_valid时为什么是human = True

时间:2014-08-22 09:35:05

标签: python django captcha

the doc验证表单部分显示以下内容:

def some_view(request):
    if request.POST:
        form = CaptchaTestForm(request.POST)

        # Validate the form: the captcha field will automatically
        # check the input
        if form.is_valid():
            human = True
    else:
        form = CaptchaTestForm()

    return render_to_response('template.html',locals())

问题:代码" human = True "是的,它只是一个解释或评论,显示人类输入为真的验证码"?

1 个答案:

答案 0 :(得分:1)

"human = True"表示在if语句中您知道验证码已成功填写。您可以将此行更改为普通代码以保存表单。