-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapicall.js
75 lines (70 loc) · 1.58 KB
/
apicall.js
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
//https://api.github.com/users
const url="https://api.github.com/users"
const url2="http://localhost:3000/posts"
// function json(){
// return response.json()
// }
try{
fetch(url)
// .then((status)=>console.log(status))
.then((response)=>{
return (response.json())
})
.then(data => {
console.log(data);
})
.catch((error)=>{console.log(error)})
}
catch(error){
console.log(error)
}
async function logJSONData() {
const response = await fetch(url);
const jsonData = await response.json();
//console.log(jsonData);
var temp="";
for (let i=0;i<jsonData.length;i++){
let{login,id,type,site_admin}=jsonData[i]
console.log(login+'|'+id+'|'+type+'|'+site_admin)
temp+="<tr>";
temp+="<td>"+login+"</td>";
temp+="<td>"+type+"</td>";
temp+="<td>"+site_admin+"</td>";
}
document.getElementById("data").innerHTML=temp;
}
try
{
//logJSONData()
}
catch(error){
console.log(error)
}
async function postData()
{
await fetch(url2, {
method: 'POST',
body: JSON.stringify({
id:7,
login:"TestUser6",
type:"User6",
site_admin:false
}),
headers: {
//Accept: 'application/json',
'Content-Type': 'application/json'
},
})
.then(function(response){
return response.json()})
.then(function(data)
{console.log(data)})
.catch(error => console.error('Error:', error));
}
try
{
postData()
}
catch(error){
console.log(error)
}