摘要: https://docs.djangoproject.com/en/dev/ref/models/expressions/ from django.db.models import Count, F, Value from django.db.models.functions import Leng 阅读全文
posted @ 2020-10-16 13:35 花生与酒 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 利用django-axes 控制用户尝试登陆次数,失败若干次后封锁IP禁止登陆 1.install pip install django-axes # バージョンを指定する場合は以下 pip install django-axes==5.0.13 settings.py添加 INSTALLED_AP 阅读全文
posted @ 2020-10-16 11:47 花生与酒 阅读(131) 评论(0) 推荐(0) 编辑
摘要: pk使用uuid,字段校验 models.py import uuid from django.core.validators import RegexValidator from django.db import models class Customer(models.Model): id = 阅读全文
posted @ 2020-10-16 11:01 花生与酒 阅读(182) 评论(0) 推荐(0) 编辑