赞
踩
安装django-simple-captcha
pip install django-simple-captcha
将captcha 安装在installed_apps里面
将captcha配置url
迁移同步,生成captcha所依赖的表
python manage.py makemigrations
python manage.py migrate
将captcha字段在form类当中进行设置, 但是要导入from captcha.fields import CaptchaField
在后台逻辑当中,get请求里面实例化我们的form,将form对象返回到页面
在页面上通过{{ form.captcha}} 获取验证码
效果图
注册成功
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。