Web/05-JavaScript基础:异步编程和Ajax/02-Ajax入门和发送http请求.md

373 lines
11 KiB
JavaScript
Raw Normal View History

2021-05-18 21:25:52 +08:00
## 同步和异步回顾
2018-02-28 18:12:06 +08:00
2021-05-17 17:59:58 +08:00
### 同步和异步的简单理解
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 同步必须等待前面的任务完成才能继续后面的任务
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 异步不受当前任务的影响
2018-02-28 18:12:06 +08:00
拿排队举例
2021-05-19 00:10:08 +08:00
- 同步在银行排队时只有等到你了才能够去处理业务
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 异步在排队的时候可以玩手机
2018-02-28 18:12:06 +08:00
### 异步更新网站
我们在访问一个普通的网站时当浏览器加载完`HTML、CSS、JS`以后网站的内容就固定了如果想让网站内容发生更改就必须**刷新**页面才能够看到更新的内容
2021-05-17 17:59:58 +08:00
可如果用到**异步更新**情况就大为改观了比如我们在访问新浪微博时看到一大半了点击底部的**加载更多**会自动帮我们加载更多的微博同时页面并不会整体刷新
2018-02-28 18:12:06 +08:00
2021-05-17 17:59:58 +08:00
试想一下如果没有异步刷新的话每次点击加载更多网页都要重新刷新体验就太糟糕了
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
web 前端里的异步更新就要用到 Ajax很多人说如果没有 Ajax就没有互联网的今天
2021-05-17 17:59:58 +08:00
2021-05-19 00:10:08 +08:00
关于同步和异步的更详细介绍可以参考本项目的另外一篇文章05-JavaScript 基础异步编程和 Ajax/01-单线程和异步
2018-02-28 18:12:06 +08:00
## Ajax
### Ajax 的概念
2021-05-18 21:25:52 +08:00
在浏览器中我们可以在不刷新页面的情况下通过 Ajax 的方式去获取一些新的内容
2018-02-28 18:12:06 +08:00
AjaxAsynchronous Javascript And XML异步 JavaScript XML它并不是凭空出现的新技术而是对于现有技术的结合Ajax 的核心是 js 对象**XMLHttpRequest**
2021-05-19 00:10:08 +08:00
### Ajax 原理发送 Ajax 请求的五个步骤
2018-02-28 18:12:06 +08:00
> 其实也就是 使用 XMLHttpRequest 对象的五个步骤
2021-05-19 00:10:08 +08:00
我们先回忆一下一个完整的 HTTP 请求需要的是
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 请求的网址请求方法 get/post
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 提交请求的内容数据请求主体等
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 接收响应回来的内容
2018-02-28 18:12:06 +08:00
发送 Ajax 请求的五个步骤
2021-05-17 17:59:58 +08:00
1创建异步对象 XMLHttpRequest 对象
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
2使用 open 方法设置请求参数`open(method, url, async)`参数解释请求的方法请求的 url是否异步第三个参数如果不写则默认为 true
2018-02-28 18:12:06 +08:00
2021-05-18 21:25:52 +08:00
3发送请求`send()`
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
4注册事件注册 onreadystatechange 事件状态改变时就会调用
2018-02-28 18:12:06 +08:00
如果要在数据完整请求回来的时候才调用我们需要手动写一些判断的逻辑
2021-05-17 17:59:58 +08:00
5服务端响应获取返回的数据
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
## 手写 Ajax
### 手写第一个 Ajax 请求
get 请求
```js
//【发送ajax请求需要五步】
//1创建XMLHttpRequest对象
var xmlhttp = new XMLHttpRequest();
//2设置请求的参数。包括请求的方法、请求的url。
xmlhttp.open('get', '02-ajax.php');
//3发送请求
xmlhttp.send();
//4注册事件。 onreadystatechange事件状态改变时就会调用。
//如果要在数据完整请求回来的时候才调用,我们需要手动写一些判断的逻辑。
xmlhttp.onreadystatechange = function () {
// 为了保证 数据 完整返回,我们一般会判断 两个值
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
2021-05-20 18:02:53 +08:00
//5服务端相应如果能够进入这个判断说明数据请求成功了
console.log('数据返回成功:' + JSON.stringify(xmlhttp.responseText));
2021-05-19 00:10:08 +08:00
2021-05-20 18:02:53 +08:00
// 伪代码:按业务需要,将接口返回的内容显示在页面上
// document.querySelector('h1').innerHTML = xmlhttp.responseText;
2021-05-19 00:10:08 +08:00
}
};
```
post 请求
```js
//1异步对象
var xmlhttp = new XMLHttpRequest();
//2设置请求参数。包括请求的方法、请求的url。
xmlhttp.open('post', '02.post.php');
// 如果想要使用post提交数据,必须添加此行
xmlhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
//3发送请求
xmlhttp.send('name=fox&age=18');
//4注册事件
xmlhttp.onreadystatechange = function () {
//5服务端相应
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
alert(xmlhttp.responseText);
}
};
```
2021-05-20 18:02:53 +08:00
### 封装 Ajax 请求重要
2021-05-19 00:10:08 +08:00
2021-05-20 18:02:53 +08:00
上面的代码执行顺序很好理解但在实战开发中是不会这么写的假如你的页面中需要调十次接口那岂不是要手写十遍 Ajax 请求这样会导致大量的重复代码
2021-05-19 00:10:08 +08:00
2021-05-20 18:02:53 +08:00
所以我们需要把重复代码封装成一个公共函数然后通过**回调函数**处理成功和失败的逻辑
封装 Ajax 请求的代码如下(get 请求为例)
```js
// 封装 Ajax为公共函数
function myAjax(url, callback) {
// 1、创建XMLHttpRequest对象
var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
// 兼容IE5、IE6浏览器。不写也没关系
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
}
// 2、发送请求
xmlhttp.open('GET', url, true);
xmlhttp.send();
// 3、服务端响应
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState === 4 && xmlhttp.status === 200) {
var obj = JSON.parse(xmlhttp.responseText);
console.log('数据返回成功:' + Jobj);
callback(obj);
}
};
}
// 单次调用 ajax
myAjax('a.json', (res) => {
console.log(res);
});
// 多次调用 ajax。接口请求顺序a --> b --> c
myAjax('a.json', (res) => {
console.log(res);
myAjax('b.json', (res) => {
console.log(res);
myAjax('c.json', (res) => {
console.log(res);
});
});
});
```
2021-05-19 00:10:08 +08:00
### Ajax 请求get 请求举例
2018-02-28 18:12:06 +08:00
1index.html
```html
<!DOCTYPE html>
<html lang="en">
2021-05-19 00:10:08 +08:00
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
<h1>Ajax 发送 get 请求</h1>
<input type="button" value="发送get_ajax请求" id="btnAjax" />
<script type="text/javascript">
// 绑定点击事件
document.querySelector('#btnAjax').onclick = function () {
2021-05-20 18:02:53 +08:00
myAjax('02-ajax.php', (res) => {
console.log(res);
console.log('数据返回成功');
// 显示在页面上
document.querySelector('h1').innerHTML = obj;
// alert(xhr.responseText);
});
};
function myAjax(url, callback) {
var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
}
xmlhttp.open('GET', url, true);
2021-05-19 00:10:08 +08:00
xmlhttp.send();
xmlhttp.onreadystatechange = function () {
2021-05-20 18:02:53 +08:00
if (xmlhttp.readyState === 4 && xmlhttp.status === 200) {
var obj = JSON.parse(xmlhttp.responseText);
console.log('数据返回成功:' + Jobj);
callback(obj);
2021-05-19 00:10:08 +08:00
}
};
2021-05-20 18:02:53 +08:00
}
2021-05-19 00:10:08 +08:00
</script>
</body>
2018-02-28 18:12:06 +08:00
</html>
```
202-ajax.php
```php
<?php
echo 'smyhvae';
?>
```
效果如下
![](http://img.smyhvae.com/20180228_1605.gif)
## XMLHttpRequest 对象详解
我们在上一段讲解了使用 XMLHttpRequest 对象的五个步骤本段我们讲一下注意事项
### 发送请求
发送请求的方法
```javascript
2021-05-19 00:10:08 +08:00
open(method, url, async);
2018-02-28 18:12:06 +08:00
```
参数解释
2021-05-19 00:10:08 +08:00
- method请求的类型GET POST
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- url文件在服务器上的位置
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- asynctrue异步 false同步
2018-02-28 18:12:06 +08:00
另外还有个方法仅用于 POST 请求
```javascript
2021-05-19 00:10:08 +08:00
send(string);
2018-02-28 18:12:06 +08:00
```
2021-05-19 00:10:08 +08:00
### POST 请求时注意
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
如果想让 form 表单提交数据那样使用 POST 请求就需要使用 XMLHttpRequest 对象的 setRequestHeader()方法 来添加 HTTP 然后在 send() 方法中添加想要发送的数据
2018-02-28 18:12:06 +08:00
```javascript
2021-05-19 00:10:08 +08:00
xmlhttp.open('POST', 'ajax_test.php', true);
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
xmlhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
xmlhttp.send('name=smyhvae&age=27');
2018-02-28 18:12:06 +08:00
```
### onreadystatechange 事件
注册 onreadystatechange 事件后每当 readyState 属性改变时就会调用 onreadystatechange 函数
readyState存有 XMLHttpRequest 的状态 0 4 发生变化
2021-05-19 00:10:08 +08:00
- 0: 请求未初始化
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 1: 服务器连接已建立
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 2: 请求已接收
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 3: 请求处理中
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 4: 请求已完成且响应已就绪
2018-02-28 18:12:06 +08:00
status
2021-05-19 00:10:08 +08:00
- 200: "OK"
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- 404: 未找到页面
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
onreadystatechange 事件中** readyState 等于 4且状态码为 200 表示响应已就绪**
2018-02-28 18:12:06 +08:00
### 服务器响应的内容
2021-05-19 00:10:08 +08:00
- responseText获得字符串形式的响应数据
2018-02-28 18:12:06 +08:00
2021-05-19 00:10:08 +08:00
- responseXML获得 XML 形式的响应数据
2018-03-02 14:12:14 +08:00
2021-05-19 00:10:08 +08:00
如果响应的是普通字符串就使用 responseText如果响应的是 XML使用 responseXML
2018-03-02 14:12:14 +08:00
## jQuery 中的 Ajax
2021-05-19 00:10:08 +08:00
JQuery 作为最受欢迎的 js 框架之一常见的 Ajax 已经帮助我们封装好了只需要调用即可更为详细的 api 文档可以查阅[w3cSchool_JQueryAjax](http://www.w3school.com.cn/jquery/jquery_ref_ajax.asp)
2018-03-02 14:12:14 +08:00
格式举例
```javascript
$.ajax({
2021-05-19 00:10:08 +08:00
url: '01.php', //请求地址
data: 'name=fox&age=18', //发送的数据
type: 'GET', //请求的方式
success: function (argument) {}, // 请求成功执行的方法
beforeSend: function (argument) {}, // 在发送请求之前调用,可以做一些验证之类的处理
error: function (argument) {
console.log(argument);
}, //请求失败调用
});
2018-03-02 14:12:14 +08:00
```
代码举例
1index.html
```html
2021-05-19 00:10:08 +08:00
<!DOCTYPE html>
2018-03-02 14:12:14 +08:00
<html lang="en">
2021-05-19 00:10:08 +08:00
<head>
<meta charset="UTF-8" />
<title>jquery-ajax</title>
</head>
<body>
<input type="button" value="点击" id="btn" />
<div id="showInfo"></div>
<script type="text/javascript" src="jquery-1.11.2.js"></script>
<script type="text/javascript">
$(function () {
$('#btn').click(function () {
$.ajax({
url: 'data.php',
dataType: 'text',
type: 'get',
success: function (data) {
alert(data);
//$("#showInfo").html(data);
},
error: function (e) {
console.log(e);
},
});
});
});
</script>
</body>
2018-03-02 14:12:14 +08:00
</html>
```
2data.php
```php
<?php
$text = 'hello world';
echo $text;
?>
```
2021-05-24 12:43:12 +08:00
## 我的公众号
2021-05-17 17:59:58 +08:00
2021-05-24 12:43:12 +08:00
想学习**更多技能**不妨关注我的微信公众号**千古壹号**
2021-05-17 17:59:58 +08:00
2021-05-24 12:43:12 +08:00
扫一扫你将发现另一个全新的世界而这将是一场美丽的意外
2018-02-28 18:12:06 +08:00
2021-05-24 12:48:27 +08:00
![](https://img.smyhvae.com/20200102.png)