Django使用django-simple-captcha做验证码的实现示例
程序员文章站
2022-03-10 21:35:38
安装django-simple-captchapip install django-simple-captcha将captcha 安装在installed_apps里面将captcha配置url迁移同...
安装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}} 获取验证码
效果图
注册成功
到此这篇关于django使用django-simple-captcha做验证码的文章就介绍到这了,更多相关django 验证码内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读