天天生鲜 登录基本逻辑 user = authenticate(username=username, password=password)一直返回None

问题描述

Python3.5 + Django2.2 天天生鲜项目在【4-01_登录基本逻辑】一节中user = authenticate(username=username, password=password)返回结果都是None

出错原因

它会自动关联数据库的is_active

解决方法

settings.py文件里面加上如下代码:

AUTHENTICATION_BACKENDS = ['django.contrib.auth.backends.AllowAllUsersModelBackend']

参考

Django 2.1 用户认证系统authenticate()一直返回None

你可能感兴趣的:(Django,Python3)