captcha包 验证码 使用介绍
2018-01-20 本文已影响173人
你常不走的路
github地址:https://github.com/mbi/django-simple-captcha
安装
pip install django-simple-captcha
settings 配置
INSTALLED_APPS = [
...
'captcha',
]
进行migrate 生成表
在form中使用 验证码字段
from django import forms
from captcha.fields import CaptchaField
class CaptchaTestForm(forms.Form):
...
captcha = CaptchaField()
在modelform中使用
from django import forms
from captcha.fields import CaptchaField
class CaptchaTestModelForm(forms.ModelForm):
captcha = CaptchaField()
class Meta:
model = MyModel
html添加验证码字段
<label>验 证 码</label>
{{ 你的form.captcha }}
这样就可以了