Django

用本身的表繼承user表

from django.contrib.auth.models import AbstractUser
class UserInfo(AbstractUser):
    tel = models.CharField(max_length=32)

並在settings中配置python

AUTH_USER_MODEL = 'app01.UserInfo'

 用PIL生成隨機驗證碼圖片

import random
from PIL import Image, ImageDraw, ImageFont
from io import BytesIO


# 驗證碼視圖
def get_valid_img(request):

    def get_random_color():
        return (
            random.randint(
                0, 255), random.randint(
                0, 255), random.randint(
                0, 255))
    #
    # img=Image.new("RGB",(350,38),get_random_color())
    # f=open("valid.png","wb")
    # img.save(f,"png")
    # with open("valid.png","rb") as f:
    #     data=f.read()

    # 方式3:
    # img=Image.new("RGB",(350,38),get_random_color())
    # f=BytesIO()
    # img.save(f,"png")
    # data=f.getvalue()

    # # 方式4:完善文本
    #
    # img=Image.new("RGB",(350,38),get_random_color())
    # draw=ImageDraw.Draw(img)
    # font=ImageFont.truetype("static/font/kumo.ttf",32)
    # draw.text((0,0),"python!",get_random_color(),font=font)
    #
    # # 寫與讀
    # f=BytesIO()
    # img.save(f,"png")
    # data=f.getvalue()

    # 方式5:

    img = Image.new("RGB", (125, 38), get_random_color())
    draw = ImageDraw.Draw(img)
    font = ImageFont.truetype("static/font/kumo.ttf", 32)

    keep_str = ""
    for i in range(5):
        random_num = str(random.randint(0, 9))
        random_lowalf = chr(random.randint(97, 122))
        random_upperalf = chr(random.randint(65, 90))
        random_char = random.choice(
            [random_num, random_lowalf, random_upperalf])
        draw.text((i * 25, 0), random_char, get_random_color(), font=font)
        keep_str += random_char

    width = 125
    height = 38
    for i in range(3):
        x1 = random.randint(0, width)
        x2 = random.randint(0, width)
        y1 = random.randint(0, height)
        y2 = random.randint(0, height)
        draw.line((x1, y1, x2, y2), fill=get_random_color())

    for i in range(5):
        draw.point([random.randint(0, width), random.randint(
            0, height)], fill=get_random_color())
        x = random.randint(0, width)
        y = random.randint(0, height)
        draw.arc((x, y, x + 4, y + 4), 0, 90, fill=get_random_color())
    # 寫與讀
    f = BytesIO()
    img.save(f, "png")
    data = f.getvalue()

    print('keep_str', keep_str)

    # 將驗證碼存在各自的session中

    request.session['keep_str'] = keep_str

    return HttpResponse(data)

此視圖函數對應的url即爲圖片地址,校驗時經過session取到的值與ajax的發送數據進行比較,注意大小寫,建議使用upper比較大寫ajax

相關文章
相關標籤/搜索