Ajax
Ajax 即“AsynchronousJavascriptAndXML”(异步 JavaScript 和 XML),是指一种创建交互式应用的网页开发技术。通俗的理解就是在网页中利用XMLHttpRequest对象和服务器进行数据交互的方式。
传统的网页(不使用 Ajax)如果需要更新内容,必须重载整个网页页面。其缺点如下: 1. 本身是针对MVC编程,不符合前端MVVM的浪潮 2. 基于原生XHR开发,XHR本身的架构不清晰 3. 不符合关注分离(Separation of Concerns)的原则 4. 配置和调用方式非常混乱,而且基于事件的异步模型不友好。
Ajax典型的应用场景
- 用户名检测:注册用户时,通过Ajax的方式动态检测用户名是否被占用
- 搜索提示,输入关键字,动态加载数据搜索提示列表
- 数据分页显示
- 数据的增删改查
jQuery中的ajax
$.get()
用来发起get请求,从而将服务器上的资源请求到客户端进行使用
$.post()
用来发起post请求,向服务器提交数据
<button id="btnGET">不带参数的请求</button>
<button id="btnGET1">带参数的请求</button>
<button id="btnPOST">提交数据</button>
<script>
$(function() {
$('#btnGET').on('click', function() {
$.get('http://www.liulongbin.top:3006/api/getbooks', function(res) {
console.log(res);
})
})
$('#btnGET1').on('click', function() {
$.get('http://www.liulongbin.top:3006/api/getbooks', {
id: 1
}, function(res) {
console.log(res);
})
})
$('#btnPOST').on('click', function() {
$.post('http://www.liulongbin.top:3006/api/addbook', {
bookname: '背影',
author: '朱自清',
publisher: '天津图书出版社'
}, function(res) {
console.log(res)
})
})
})
</script>
$.ajax()
既可以发get请求,也可以发post请求
$.ajax({
method: 'GET',
url: 'http://www.liulongbin.top:3006/api/getbooks',
data: {
id: 1313,
},
success: function(res) {
console.log(res);
}
})
案例:图书列表
页面搭建结构
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./lib/bootstrap.css">
<script src="./lib/jquery.js"></script>
<script src="./js/index.js"></script>
<style>
body {
padding: 20px;
}
</style>
</head>
<body>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">添加新图书</h3>
</div>
<div class="panel-body form-inline">
<div class="input-group">
<div class="input-group-addon">书名</div>
<input type="text" class="form-control" id="iptBookname" placeholder="请输入书名">
</div>
<div class="input-group">
<div class="input-group-addon">作者</div>
<input type="text" class="form-control" id="iptAuthor" placeholder="请输入作者">
</div>
<div class="input-group">
<div class="input-group-addon">出版社</div>
<input type="text" class="form-control" id="iptPublisher" placeholder="请输入出版社">
</div>
<button id="btnAdd" class="btn btn-primary">添加</button>
</div>
</div>
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>ID</th>
<th>书名</th>
<th>作者</th>
<th>出版社</th>
<th>操作</th>
</tr>
</thead>
<tbody id="tb">
</tbody>
</table>
</body>
</html>
核心代码 1. 获取图书列表
function getBookList() {
$.get('http://www.liulongbin.top:3006/api/getbooks', function(res) {
console.log(res);
if (res.status != 200) return alert('获取数据失败')
var rows = []
$.each(res.data, function(i, item) {
rows.push('<tr><td>' + item.id + '</td><td>' + item.bookname + '</td><td>' + item.author + '</td>' + item.publisher + '<td></td><td><a href="javascript:;" class="del" data-id="' + item.id + '">删除</a></td></tr>')
})
$('#tb').empty().append(rows.join(''))
})
}
getBookList()
2.删除图书
$('tbody').on('click', '.del', function() {
console.log(1);
var id = $(this).attr('data-id')
console.log(id);
$.get('http://www.liulongbin.top:3006/api/delbook', { id: id }, function(res) {
if (res.status !== 200) return alert('删除图书失败');
getBookList()
})
})
3.添加图书
$('#btnAdd').on('click', function() {
var bookname = $('#iptBookname').val()
var author = $('#iptAuthor').val()
var publisher = $('#iptPublisher').val()
if (bookname.length <= 0 || author.length <= 0 || publisher.length <= 0) return alert('请填写完整的图书信息')
$.post('http://www.liulongbin.top:3006/api/addbook', { bookname: bookname, author: author, publisher: publisher }, function(res) {
if (res.status !== 201) return alert('添加图书失败')
getBookList()
$('#iptBookname').val()
$('#iptAuthor').val()
$('#iptPublisher').val()
})
})
|