Ajax 介绍及使用

一、Ajax简介

  • Asynchronous JavaScript and XML(异步的 JavaScript 和 XML)。

  • 不是新的编程语言,而是一种使用现有标准的新方法。

  • 可以使网页实现异步更新,意味着在不重新加载整个页面的情况下,对网页的某部分进行更新。

  • 不需要任何浏览器插件,但需要用户允许JavaScript在浏览器上执行。

注意:ajax本身不支持跨域请求,需要在服务器端处理。

二、Ajax 工作原理

三、Ajax是基于现有的Internet标准

  • XMLHttpRequest 对象 (异步的与服务器交换数据)
  • JavaScript/DOM (信息显示/交互)
  • CSS (给数据定义样式)
  • XML (作为转换数据的格式)

AJAX应用程序与浏览器和平台无关的!

四、Ajax 使用步骤

创建ajax对象

1
2
3
4
5
6
7
var xhr = null;
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();
} else {
//为了兼容IE6
xhr = new ActiveXObject('Microsoft.XMLHTTP');
}

连接服务器

1
2
// 连接服务器open方法(GET/POST,请求地址, 异步传输)
xhr.open('GET', 'data.txt', true);//第三个参数 false 为同步传输

发送请求

1
xhr.send();

接收返回数据

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
** 每当readyState改变时,就会触发onreadystatechange事件
** readyState属性存储有XMLHttpRequest的状态信息
** 0 :请求未初始化
** 1 :服务器连接已建立
** 2 :请求已接受
** 3 : 请求处理中
** 4 :请求已完成,且相应就绪
*/
xhr.onreadystatechange = function(){
if(xhr.readyState == 4){
/*
** Http状态码
** 1xx :信息展示
** 2xx :成功
** 3xx :重定向
** 4xx : 客户端错误
** 5xx :服务器端错误
*/
if(xhr.status == 200){
success(xhr.responseText);
} else {
if(failed){
failed(xhr.status);
}
}
}
}

五、GET 请求

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ajax</title>
</head>
<body>
<button type="button" onclick="loadXMLDoc()">请求数据</button>

<script>
function loadXMLDoc() {
var xhr;
if (window.XMLHttpRequest) {
// IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
xhr = new XMLHttpRequest();
} else {
// IE6, IE5 浏览器执行代码
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
document.write(xhr.responseText);
}
};
xhr.open("GET", "https://hutaoao.github.io/ajax/test.txt?name=Henry&password=123456", true);//get带参数
xhr.send();
}
</script>
</body>
</html>

六、POST 请求

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ajax</title>
</head>
<body>
<button type="button" onclick="loadXMLDoc()">请求数据</button>

<script>
function loadXMLDoc() {
var xhr;
if (window.XMLHttpRequest) {
// IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
xhr = new XMLHttpRequest();
} else {
// IE6, IE5 浏览器执行代码
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
document.write(xhr.responseText);
}
};
xhr.open("POST", "test.php", true);
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xhr.send("name=Henry&password=123456");//post 传参数
}
</script>
</body>
</html>

七、url - 服务器上的文件

open() 方法的 url 参数是服务器上文件的地址:

1
xmlhttp.open("GET","ajax_test.html",true);

该文件可以是任何类型的文件,比如 .txt 和 .xml,或者服务器脚本文件,比如 .asp 和 .php (在传回响应之前,能够在服务器上执行任务)。

八、onreadystatechange 事件

当请求被发送到服务器时,我们需要执行一些基于响应的任务。

每当 readyState 改变时,就会触发 onreadystatechange 事件。

readyState 属性存有 XMLHttpRequest 的状态信息。

下面是 XMLHttpRequest 对象的三个重要的属性:

onreadystatechange

存储函数(或函数名),每当 readyState 属性改变时,就会调用该函数。

readyState

  • 0: 请求未初始化
  • 1: 服务器连接已建立
  • 2: 请求已接收
  • 3: 请求处理中
  • 4: 请求已完成,且响应已就绪

status

  • 200: “OK”
  • 404: 未找到页面

当 readyState 等于 4 且状态为 200 时,表示响应已就绪:
onreadystatechange 事件被触发 4 次(0 - 4), 分别是: 0-1、1-2、2-3、3-4,对应着 readyState 的每个变化。

九、封装使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ajax</title>
</head>
<body>
<button type="button" onclick="loadXMLDoc()">请求数据</button>

<script>
/*
** 封装好的 ajax 函数
*/
function ajax(options){
var xhr = null;
var params = formsParams(options.data);
//创建对象
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest()
} else {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
// 连接、发送
if(options.type == "GET"){
xhr.open(options.type,options.url + "?"+ params,options.async);
xhr.send(null)
} else if(options.type == "POST"){
xhr.open(options.type,options.url,options.async);
xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhr.send(params);
}
//接收返回数据
xhr.onreadystatechange = function(){
if(xhr.readyState == 4){
if(xhr.status == 200){
options.success(xhr.responseText);
}else{
options.failed(xhr.status);
}
}
};
function formsParams(data){
let arr = [];
for(let prop in data){
arr.push(prop + "=" + data[prop]);
}
return arr.join("&");
}
}

function loadXMLDoc(){
ajax({
url : "https://hutaoao.github.io/images/Ajax/test.txt", // url---->地址
type : "GET", // type ---> 请求方式
async : true, // async----> 同步:false,异步:true
data : { //传入信息
name : "张三",
age : 18
},
success : function(data){ //返回接受信息
document.write(data);
},
failed:function (data) {
alert(data);
}
})
}
</script>
</body>
</html>
海盗船长 wechat
扫码关注我的公众号哟
0%