-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasync&await.html
More file actions
55 lines (47 loc) · 965 Bytes
/
Copy pathasync&await.html
File metadata and controls
55 lines (47 loc) · 965 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Promises</title>
<style>
</style>
</head>
<body>
<script>
class HttpError extends Error{
constructor(response){
super(`${response.status} for ${response.url}`);
this.name = 'HttpError';
this.response = response;
}
}
async function loadJson(url){
let response = await fetch(url);
if (response.status == 200){
return response.json();
} else{
throw new HttpError(response);
}
}
async function demoGithubUser(){
let user;
while(true){
let name = prompt("Enter a name?", "iliakan");
try{
user = await loadJson(`https://api.github.com/users/${name}`);
break;
}
catch(err){
if(err instanceof HttpError && err.response.status == 404){
alert("No such user, please reenter.");
} else{
throw err;
}
}
}
alert(`Full name: ${user.name}.`);
return user;
}
demoGithubUser();
</script>
</body>
</html>