JQuery分析及实现part7之 Ajax 模块功能及实现

JQuery模块分析及其实现第七部分 Ajax 部分功能及实现,接第六部分!

Ajax 请求流程

  1. 创建一个请求对象
1
2
3
4
5
6
7
function createRequest() {
return window.XMLHttpRequest ? new window.XMLHttpRequest() :
new ActiveXObject('Microsoft.XMLHTTP');
}

var xhr = createRequest();
console.log(xhr);
  1. 格式化数据
    • 将格式化后的数据,参数与值都要重新编码
1
2
3
4
5
6
7
8
9
10
11
function formatData(data){
var ret = [];
for(var k in data){
ret.push(window.encodeURIComponent(k) + '=' + window.encodeURIComponent(data[k]));
}
// 如果不想从服务器缓存中读取数据
ret.push(('_=' + Math.random()).replace('.', ''));
return ret.join('&');
}
var data = {name: '梦魇小栈',age: 2,url:'http://blog.ihoey.com'};
console.log(formatData(data));//name=%E6%A2%A6%E9%AD%87%E5%B0%8F%E6%A0%88&age=2&url=http%3A%2F%2Fblog.ihoey.com
  1. 与服务器建立连接
  2. 监听请求状态
  3. 发送请求
  4. 封装
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<script>
// 默认配置信息
ajaxSetting = {
url: '',
type: 'GET',
dataType: 'text',
contentType: 'application/x-www-form-urlencoded',
data: null,
async: true,
success: null,
fail: null
};

function createRequest() {
return window.XMLHttpRequest ? new window.XMLHttpRequest() :
new ActiveXObject('Microsoft.XMLHTTP');
}

function formatData(data) {
var ret = [];
for(var k in data){
ret.push(window.encodeURIComponent(k) + '=' + window.encodeURIComponent(data[k]));
}
// 如果不想从服务器缓存中读取数据
ret.push(('_=' + Math.random()).replace('.', ''));
return ret.join('&');
}

function ajax(config) {
var context = {},
xhr,
postData = '';
// 过滤无效参数
if(!config || !config.url) {
console.warn("参数异常");
return;
}
// debugger;
// 获取默认配置信息
itcast.extend(ajaxSetting, context);
// 用户的配置覆盖默认配置
itcast.extend(config, context);
// 1: 创建请求对象
xhr = createRequest();
// 2:格式化数据
if(context.data){
postData = formatData(context.data);
}
// 3:与服务器建立连接
if(context.type.toUpperCase() === 'GET'){
xhr.open('GET', context.url + '?' + postData, context.async);
postData = null;
} else {
// 模拟表单提交,设置请求头信息
xhr.setRequestHeader('Content-Type', context.contentType);
xhr.open('POST', context.url, context.async);
}
// 4:监听请求状态
xhr.onreadystatechange = function() {
if(xhr.readyState === 4){
if(xhr.status >= 200 && xhr.status < 300 || xhr.status === 304){
// 获取到请求回来的数据
var text = xhr.responseText;
// 如果指定的数据格式为 json,那就将其转换为json对象
text = context.dataType.toLowerCase() === 'json' ?
JSON.parse(text) : text;

context.success && context.success(text);
} else {
context.fail && context.fail({"errorCode": xhr.status, "message": "请求超时."});
}
}
};
// 5: 发送请求
xhr.send(postData);
// context.success && context.success(JSON.parse(xhr.responseText));
}
</script>
<script>
ajax({
url: 'data.json',
dataType: 'json',
async: false,
success: function(data) {
document.getElementById('content').innerHTML= '<p>' + data.username + '</p>' +
'<p>' + data.age + '</p>';
},
fail: function(er) {
console.log(er.errorCode);
}
});
</script>

Jsonp 请求

  1. 跨域 只能发送 GET 请求 . 一种不安全的请求方式
  2. 原理:由于 dom 元素的 src 属性,具有跨域功能. 在实现跨域请求时,为了方便就使用 script 标签来做.
  3. 流程
    • 创建请求对象,就是创建一个 script 标签
    • 将上述创建的 script 标签添加到页面的 head 标签下
    • 格式化数据
    • 创建全局回调函数
    • 设置超时时间,如果超过此时间,也没有得到数据,表示请求失败.否则,请求成功
    • 发送请求: 指定 script 标签的 src 属性值
------ 有问题请 留言给我哦! 也欢迎入群讨论! 点我呀! ------
满分是10分的话,这篇文章你给几分,您的支持将鼓励我继续创作!
ihoey.com
  • PayPal
  • QQ
  • 支付宝
  • 微信支付
0%