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

403 lines
12 KiB
Markdown
Raw Normal View History

---
title: 02-Ajax入门和发送http请求
publish: true
---
<ArticleTopAd></ArticleTopAd>
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-27 12:54:01 +08:00
## XMLHttpRequest 对象详解
我们在上一段讲解了使用 XMLHttpRequest 对象的五个步骤。本段,我们讲一下注意事项。
### 发送请求
发送请求的方法:
```javascript
open(method, url, async);
```
参数解释:
- method请求的类型GET 或 POST
- url文件在服务器上的位置
- asynctrue异步或 false同步
另外还有个方法:(仅用于 POST 请求)
```javascript
send(string);
```
### POST 请求时注意
如果想让 像 form 表单提交数据那样使用 POST 请求,就需要使用 XMLHttpRequest 对象的 setRequestHeader()方法 来添加 HTTP 头。然后在 send() 方法中添加想要发送的数据:
```javascript
xmlhttp.open('POST', 'ajax_test.php', true);
xmlhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xmlhttp.send('name=smyhvae&age=27');
```
### onreadystatechange 事件
注册 onreadystatechange 事件后,每当 readyState 属性改变时,就会调用 onreadystatechange 函数。
readyState存有 XMLHttpRequest 的状态。从 0 到 4 发生变化)
- 0: 请求未初始化
- 1: 服务器连接已建立
- 2: 请求已接收
- 3: 请求处理中
- 4: 请求已完成,且响应已就绪
status
- 200: "OK"。
- 404: 未找到页面。
在 onreadystatechange 事件中,**当 readyState 等于 4且状态码为 200 时,表示响应已就绪**。
### 服务器响应的内容
- responseText获得字符串形式的响应数据。
- responseXML获得 XML 形式的响应数据。
如果响应的是普通字符串,就使用 responseText如果响应的是 XML使用 responseXML。
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
2021-05-27 21:56:03 +08:00
// 封装 Ajax为公共函数传入回调函数 success 和 fail
function myAjax(url, success, fail) {
2021-05-20 18:02:53 +08:00
// 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);
2021-10-08 16:57:15 +08:00
console.log('数据返回成功:' + obj);
2021-05-27 21:56:03 +08:00
success && success(xmlhttp.responseText);
} else {
// 这里的 && 符号,意思是:如果传了 fail 参数,就调用后面的 fail();如果没传 fail 参数,就不调用后面的内容。因为 fail 参数不一定会传。
fail && fail(new Error('接口请求失败'));
2021-05-20 18:02:53 +08:00
}
};
}
// 单次调用 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
2021-08-31 21:36:08 +08:00
学会了封装 get 请求之后,封装 post请求也是类似的写法。
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-08-31 21:36:08 +08:00
// 这里直接使用上面封装的 myAjax() 方法即可
2021-05-20 18:02:53 +08:00
myAjax('02-ajax.php', (res) => {
console.log(res);
console.log('数据返回成功');
// 显示在页面上
2021-10-11 10:18:50 +08:00
document.querySelector('h1').innerHTML = res;
2021-05-20 18:02:53 +08:00
// alert(xhr.responseText);
});
};
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)
2021-08-31 21:36:08 +08:00
### Ajax 多个接口的嵌套请求
2018-02-28 18:12:06 +08:00
2021-05-27 12:54:01 +08:00
我们在做异步任务的时候,经常会涉及到多个接口的嵌套请求。比如说,接口 1 请求完成后,需要根据接口 1 的数据请求接口 2接口 2 请求完成后,需要根据接口 3 的数据请求接口 3以此类推。
2018-02-28 18:12:06 +08:00
2021-05-27 12:54:01 +08:00
需求描述:
2018-02-28 18:12:06 +08:00
2021-05-27 12:54:01 +08:00
- 请求接口 1根据用户名获取用户 id
2018-02-28 18:12:06 +08:00
2021-05-27 12:54:01 +08:00
- 请求接口 2根据用户 id 获取用户的年龄、性别等信息。
2018-02-28 18:12:06 +08:00
2021-05-27 12:54:01 +08:00
代码实现思路:
2018-02-28 18:12:06 +08:00
2021-05-27 12:54:01 +08:00
```js
myAjax('http://localhost:8888/php/user.php?name=千古', (userInfo) => {
// 根据第一个接口返回的 userInfo.id继续请求第二个接口
2021-08-31 21:36:08 +08:00
myAjax(`http://localhost:8888/php/info.php?id=${userInfo['id']}`, (res) => {
2021-05-27 12:54:01 +08:00
console.log(response);
});
});
2018-02-28 18:12:06 +08:00
```
2021-05-27 12:54:01 +08:00
我们在实战开发中,经常会涉及到接口请求之间的**依赖**:需要上一个接口请求返回的数据,来发送本次请求。这种场景经常遇到,需要记住。
2018-02-28 18:12:06 +08:00
2021-05-27 12:54:01 +08:00
但这种层层嵌套的代码,会导致**回调地域**的问题,也不利于维护。我们在后续的 ES6 章节中,会讲解 Promise它是一种更优雅的异步任务解决方案。
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-27 12:54:01 +08:00
url: 'https://xxx.com/getUserInfo.php', // 接口的请求地址
data: 'name=fox&age=18', // 请求参数
2021-05-19 00:10:08 +08:00
type: 'GET', //请求的方式
2021-05-27 12:54:01 +08:00
success: function (argument) {
// 接口请求成功时调用
console.log('接口请求成功');
},
2021-05-19 00:10:08 +08:00
beforeSend: function (argument) {}, // 在发送请求之前调用,可以做一些验证之类的处理
error: function (argument) {
2021-05-27 12:54:01 +08:00
// 接口请求失败时调用
console.log('接口请求失败');
},
2021-05-19 00:10:08 +08:00
});
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({
2021-05-27 12:54:01 +08:00
url: 'https://xxx.com/getUserInfo.php', // 接口的请求地址
2021-05-19 00:10:08 +08:00
dataType: 'text',
2021-05-27 12:54:01 +08:00
data: 'name=fox&age=18', // 请求参数
2021-05-19 00:10:08 +08:00
type: 'get',
success: function (data) {
2021-05-27 12:54:01 +08:00
console.log('接口请求成功');
2021-05-19 00:10:08 +08:00
alert(data);
2021-05-27 12:54:01 +08:00
// $("#showInfo").html(data);
2021-05-19 00:10:08 +08:00
},
2021-05-27 12:54:01 +08:00
error: function (err) {
console.log('接口请求失败:' + err);
2021-05-19 00:10:08 +08:00
},
});
});
});
</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)
2021-05-27 12:54:01 +08:00
```
```