从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 "是的,它只是一个解释或评论,显示人类输入为真的验证码"?
答案 0 :(得分:1)
"human = True"
表示在if
语句中您知道验证码已成功填写。您可以将此行更改为普通代码以保存表单。