github地址:https://github.com/mbi/django-simple-captcha
安裝
pip install django-simple-captcha
settings 配置
INSTALLED_APPS = [
...
'captcha',
]
進(jìn)行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 }}
這樣就可以了