验证码 开发库

目录

1.验证码第三方插件 django-simple-captcha 

2.添加captcha到INSTALLED_APPS您的settings.py

3.运行 makemigrations  migrate

4.url配置

5.注册form、views

6.前端应用


1.验证码第三方插件 django-simple-captcha 

https://django-simple-captcha.readthedocs.io/en/latest/usage.html#installation

验证码 开发库_第1张图片

2.添加captchaINSTALLED_APPS您的settings.py

3.运行 makemigrations  migrate

生产表

验证码 开发库_第2张图片

4.url配置

from django.conf.urls import url, include
...
url(r'^captcha/', include('captcha.urls')),

5.注册form、views

验证码 开发库_第3张图片

验证码 开发库_第4张图片

6.前端应用

验证码 开发库_第5张图片

 

 

 

你可能感兴趣的:(python)