這篇文章將為大家詳細(xì)講解有關(guān)如何正確的使用Django-simple-captcha驗(yàn)證碼包,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識(shí)有一定的了解。
在邕寧等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì) 網(wǎng)站設(shè)計(jì)制作定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),網(wǎng)絡(luò)營銷推廣,成都外貿(mào)網(wǎng)站建設(shè)公司,邕寧網(wǎng)站建設(shè)費(fèi)用合理。django-simple-captcha是django的驗(yàn)證碼包,非常簡單實(shí)用,這次記錄的是如何點(diǎn)擊驗(yàn)證碼后刷新驗(yàn)證碼,因?yàn)檫@個(gè)功能官方文檔并沒有詳細(xì)給出。
1.安裝 pip install django-simple-captcha, pip install Pillow
2.將captcha 加入 settings.py 的 INSTALLED_APPS
3.運(yùn)行 python manage.py makemigrations 和 python manage.py migrate
4.url路由加入urls.py的urlpatterns
urlpatterns = [ path('captcha/', include('captcha.urls')), # 圖片驗(yàn)證碼 路由 path('refresh_captcha/', views.refresh_captcha), # 刷新驗(yàn)證碼,ajax path('test/',IndexView.as_view()), #get與post請求路徑 ]
5.在views.py中加入以下代碼
from django.shortcuts import render from django.views.generic import View from captcha.models import CaptchaStore from captcha.helpers import captcha_image_url from django.http import HttpResponse import json # 創(chuàng)建驗(yàn)證碼 def captcha(): hashkey = CaptchaStore.generate_key() # 驗(yàn)證碼答案 image_url = captcha_image_url(hashkey) # 驗(yàn)證碼地址 captcha = {'hashkey': hashkey, 'image_url': image_url} return captcha #刷新驗(yàn)證碼 def refresh_captcha(request): return HttpResponse(json.dumps(captcha()), content_type='application/json') # 驗(yàn)證驗(yàn)證碼 def jarge_captcha(captchaStr, captchaHashkey): if captchaStr and captchaHashkey: try: # 獲取根據(jù)hashkey獲取數(shù)據(jù)庫中的response值 get_captcha = CaptchaStore.objects.get(hashkey=captchaHashkey) if get_captcha.response == captchaStr.lower(): # 如果驗(yàn)證碼匹配 return True except: return False else: return False class IndexView(View): def get(self, request): hashkey = CaptchaStore.generate_key() # 驗(yàn)證碼答案 image_url = captcha_image_url(hashkey) # 驗(yàn)證碼地址 print(hashkey,image_url) captcha = {'hashkey': hashkey, 'image_url': image_url} return render(request, "login.html", locals()) def post(self, request): capt = request.POST.get("captcha", None) # 用戶提交的驗(yàn)證碼 key = request.POST.get("hashkey", None) # 驗(yàn)證碼答案 if jarge_captcha(capt, key): return HttpResponse("驗(yàn)證碼正確") else: return HttpResponse("驗(yàn)證碼錯(cuò)誤")
6.templates文件夾下login.html的內(nèi)容
{% load static %}Title
django-simple-captcha并沒有使用session對驗(yàn)證碼進(jìn)行存儲(chǔ),而是使用了數(shù)據(jù)庫,當(dāng)你在做數(shù)據(jù)庫遷移的時(shí)候會(huì)生成一個(gè)表 captcha_captchastore ,包含以下字段
challenge = models.CharField(blank=False, max_length=32) # 驗(yàn)證碼大寫或者數(shù)學(xué)計(jì)算比如 1+1
response = models.CharField(blank=False, max_length=32) # 需要輸入的驗(yàn)證碼 驗(yàn)證碼小寫或數(shù)學(xué)計(jì)算的結(jié)果 比如 2
hashkey = models.CharField(blank=False, max_length=40, unique=True) # hash值
expiration = models.DateTimeField(blank=False) # 到期時(shí)間
關(guān)于如何正確的使用Django-simple-captcha驗(yàn)證碼包就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。