Django用户登录验证和自定义验证类
from django.contrib.auth import authenticate, login
from django.http import JsonResponse
from django.views.decorators.http import require_http_methods
from .forms import CustomAuthenticationForm
@require_http_methods(["POST"])
def custom_login(request):
form = CustomAuthenticationForm(data=request.POST)
if form.is_valid():
# 使用 Django 提供的 authenticate 方法来验证用户名和密码
user = authenticate(request, username=form.cleaned_data.get('username'), password=form.cleaned_data.get('password'))
if user is not None:
# 用户名和密码正确,使用 Django 提供的 login 方法来登录用户
login(request, user)
return JsonResponse({'status': 'success', 'message': '登录成功!'})
else:
return JsonResponse({'status': 'error', 'message': '用户名或密码不正确。'})
else:
# 表单验证失败,返回错误信息
return JsonResponse(form.errors, status=400)
这段代码定义了一个视图函数 custom_login
,它接收 POST 请求并使用我们自定义的 CustomAuthenticationForm
来处理登录信息。如果表单数据有效,它将使用 Django 的 authenticate
函数来验证用户名和密码。如果验证成功,将使用 login
函数登录用户,并返回成功信息。如果表单验证失败或者用户名密码错误,它将返回相应的错误信息。
评论已关闭