-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1-XmlHttpRequest.js
78 lines (62 loc) · 2.01 KB
/
1-XmlHttpRequest.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
75
76
77
78
/*Title: XMLHttpRequest
Description: API Calling using XMLHttpRequest
Author: Md. Samiur Rahman (Mukul)
Website: http://www.SamiurRahmanMukul.epizy.com
Github: https://www.github.com/SamiurRahmanMukul
Email: [email protected] [FAKE EMAIL]
Date: 06/12/2021 */
/* // ? API Calling using XMLHttpRequest -->
event - onload(), onerror()
property - response, responseText, responseType, responseURL, status, statusText
function - open(), send(), setRequestHeader() */
const makeRequest = (method, url, data) => {
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();
xhr.open(method, url);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onload = () => {
let data = xhr.response;
console.log(JSON.parse(data));
};
xhr.onerror = () => {
console.log("error is here");
};
xhr.send(JSON.stringify(data));
});
};
// ? make a getData() function to get data from the API server
const getData = () => {
makeRequest("GET", "https://jsonplaceholder.typicode.com/posts").then((res) => console.log(res));
};
getData();
// ? make a postData() function to post data to the API server
const postData = () => {
makeRequest("POST", "https://jsonplaceholder.typicode.com/posts", {
title: "foo",
body: "bar",
userId: 1,
});
};
// postData();
// ? make a updateData() function to update data to the API server
const updateData = () => {
makeRequest("PUT", "https://jsonplaceholder.typicode.com/posts/1", {
id: 1,
title: "fooMA",
body: "barMA",
userId: 1,
});
};
// updateData();
// ? make a updateSingleData() function to update single data to the API server
const updateSingleData = () => {
makeRequest("PATCH", "https://jsonplaceholder.typicode.com/posts/1", {
title: "This is changed",
});
};
// updateSingleData();
// ? make a deleteData() function to delete data to the API server
const deleteData = () => {
makeRequest("DELETE", "https://jsonplaceholder.typicode.com/posts/1");
};
// deleteData();