-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPromise实践练习.html
46 lines (43 loc) · 1.36 KB
/
Promise实践练习.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Promise-Ajax</title>
</head>
<body>
<button id="btn">点击发送AJAX</button>
<script>
const btn = document.querySelector('#btn');
btn.addEventListener('click',async function(){
let duanzi = await sendAJAX('http://api.apiopen.top/getJoke');
console.log(duanzi);
})
function sendAJAX(url){
return new Promise((resolve,reject)=>{
// 原生ajax请求
// 第一步:创建对象
const xhr= new XMLHttpRequest();
// 第二步:初始化
xhr.open('GET',url);
// 第三步:发送
xhr.send();
// 第四步:处理响应结果
xhr.onreadystatechange=()=>{
if(xhr.readyState===4){
if(xhr.status>=200 && xhr.status<300){
resolve(xhr.response);
}else{
reject(xhr.status);
}
}
}
});
sendAJAX('http://').then((value)=>{
console,log(value);
},(reason)=>{
console.log(reason);
})
}
</script>
</body>
</html>