from django.contrib.auth import authenticate
这里的authenticate
默认的是使用username.
在我们创建的APP的views.py.添加
from django.contrib.auth.backends import ModelBackend
from django.db.models import Q
class CustomBackend(ModelBackend):
def authenticate(self, username=None, password=None, **kwargs):
try:
user = UserProfile.objects.get(Q(username=username)|Q(email=username)) #Q是并集的意思,这里的email可以改成自己定义
if user.check_password(password):
return user
except Exception as e:
return None
这里的UserProfile
是下面这样定义的
class UserProfile(AbstractUser):
from django.contrib.auth.models import AbstractUser
在settings.py
下添加
这里users
是我的apps的名称。