一、Ajax基本概念
二、Ajax请求过程
- 发起ajax请求:jqeury发起
- 执行相应的视图函数,返回json数据
- 执行相应的回调函数,通过判断json内容进行相应处理
- 格式:
$.ajax({ 'url': '请求地址', 'type': '请求方式', dataType': 'json' }).success(function (data) { // 进行处理的部分 }
三、配置
四、代码
from django.shortcuts import render
from django.http import HttpResponse, JsonResponse
# Create your views here.
def index(request):
return HttpResponse('登录成功')
def login_ajax(request):
return render(request, 'mylogin/login_ajax.html')
def login_ajax_check(request):
# 1.获取用户名密码
username = request.POST.get('username')
password = request.POST.get('password')
# 2.校验并返回应答
if username == 'wen' and password == '123':
return JsonResponse({'res': 1})
else:
return JsonResponse({'res': 0})
<!DOCTYPE html>
<html lang="en">
<head>
<Meta charset="UTF-8">
<title>Ajax登录页面</title>
<script src="static/js/jquery-1.12.4.min.js"></script>
<script>
$(function () {
$('#btnAjax').click(function () {
// 1.获取用户名和密码 格式:$('#xxxx').val()
username = $('#username').val()
password = $('#password').val()
// 2.发起ajax请求
$.ajax({
'url': '/login_ajax_check',
'type': 'post',
'data': {'username' : username, 'password': password }, // ''下的username对应着视图函数中的username
'dataType': 'json'
}).success(function (data) {
// 进行处理
if (data.res==0){
$('#errmsg').show().html('用户名或密码错误')
}
else{
// 跳转到首页
location.href = '/index'
}
})
})
})
</script>
<style>
#errmsg{
display: none;
color:red;
}
</style>
</head>
<body>
<h1>Ajax登录例子</h1>
<div>
<p>
<label for="">用户名:</label>
<input type="text" id="username">
</p>
<p>
<label for="">密 码:</label>
<input type="password" id="password">
</p>
<p>
<input type="button" id="btnAjax" value="登录">
</p>
<div id="errmsg"></div>
</div>
</body>
</html>
五、遇到的问题
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。