摘要:
https://docs.djangoproject.com/en/dev/ref/models/expressions/ from django.db.models import Count, F, Value from django.db.models.functions import Leng 阅读全文
摘要:
利用django-axes 控制用户尝试登陆次数,失败若干次后封锁IP禁止登陆 1.install pip install django-axes # バージョンを指定する場合は以下 pip install django-axes==5.0.13 settings.py添加 INSTALLED_AP 阅读全文
摘要:
pk使用uuid,字段校验 models.py import uuid from django.core.validators import RegexValidator from django.db import models class Customer(models.Model): id = 阅读全文