java-script:ajax-fetch
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
java-script:ajax-fetch [2023/08/03 13:19] – created odefta | java-script:ajax-fetch [2023/08/03 16:33] (current) – odefta | ||
---|---|---|---|
Line 5: | Line 5: | ||
AJAX is a technique that allows a web page to communicate with a server and update its content without refreshing the page. AJAX can be done using vanilla JavaScript (usually with the **XMLHttpRequest** object or **fetch** API) or with a library like **jQuery** (using the **$.ajax()** function). | AJAX is a technique that allows a web page to communicate with a server and update its content without refreshing the page. AJAX can be done using vanilla JavaScript (usually with the **XMLHttpRequest** object or **fetch** API) or with a library like **jQuery** (using the **$.ajax()** function). | ||
- | ===== AJAX using the fetch API in JavaScript ===== | + | ===== AJAX using the fetch API in JavaScript |
- | This code sends a GET request to ' | + | This code sends a GET request to ' |
<code javascript ajax-fetch.html> | <code javascript ajax-fetch.html> | ||
Line 14: | Line 14: | ||
< | < | ||
< | < | ||
+ | <div id=" | ||
< | < | ||
- | fetch(' | + | fetch(' |
method: ' | method: ' | ||
}) | }) | ||
.then(response => response.json()) | .then(response => response.json()) | ||
- | .then(data => console.log(data)) | + | .then(data |
+ | // Convert the data to a string, so we can put it into the HTML | ||
+ | // This may vary depending on the structure of your data | ||
+ | let dataStr = JSON.stringify(data, | ||
+ | |||
+ | // Find the div by its ID, and put the data into it | ||
+ | document.getElementById(' | ||
+ | }) | ||
+ | .catch((error) | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | The following script will display the data in a much more cleaner way and also display the avatar image content: | ||
+ | |||
+ | <code javascript ajax-fetch-format.html> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | <div id=" | ||
+ | < | ||
+ | fetch(' | ||
+ | method: ' | ||
+ | }) | ||
+ | .then(response => response.json()) | ||
+ | .then(data => { | ||
+ | let dataDiv = document.getElementById(' | ||
+ | |||
+ | data.forEach(user => { | ||
+ | let userDiv = document.createElement(' | ||
+ | |||
+ | // create a string that represents all key-value pairs in the user object | ||
+ | let userInfo = ''; | ||
+ | for (let key in user) { | ||
+ | userInfo += `< | ||
+ | } | ||
+ | |||
+ | // add this userInfo to userDiv | ||
+ | userDiv.innerHTML = ` | ||
+ | < | ||
+ | <img src=" | ||
+ | < | ||
+ | `; | ||
+ | |||
+ | dataDiv.appendChild(userDiv); | ||
+ | }); | ||
+ | }) | ||
.catch((error) => console.error(' | .catch((error) => console.error(' | ||
</ | </ | ||
Line 26: | Line 75: | ||
</ | </ | ||
+ | |||
+ | To run it, just double click on the html file, it will be opened in the web browser. | ||
+ | |||
+ | ===== AJAX using the fetch API in JavaScript (Node.js) ===== | ||
+ | |||
+ | We'll need to use node-fetch instead of fetch. \\ To install it: | ||
+ | |||
+ | < | ||
+ | npm install node-fetch | ||
+ | </ | ||
+ | |||
+ | Output: | ||
+ | < | ||
+ | added 6 packages, and audited 7 packages in 1s | ||
+ | |||
+ | 3 packages are looking for funding | ||
+ | run `npm fund` for details | ||
+ | |||
+ | found 0 vulnerabilities | ||
+ | </ | ||
+ | |||
+ | Then the script should be adapted for node.js: | ||
+ | |||
+ | <code javascript ajax-fetch-node.js> | ||
+ | import fetch from ' | ||
+ | |||
+ | fetch(' | ||
+ | method: ' | ||
+ | }) | ||
+ | .then(response => response.json()) | ||
+ | .then(data => { | ||
+ | data.forEach(user => { | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | console.log(' | ||
+ | }); | ||
+ | }) | ||
+ | .catch((error) => console.error(' | ||
+ | </ | ||
+ | |||
+ | To run it: | ||
+ | |||
+ | < | ||
+ | node ajax-fetch-node.js | ||
+ | </ | ||
+ | |||
+ | ===== Using XMLHttpRequest (the traditional AJAX method) to fetch data from a server ===== | ||
+ | |||
+ | We use the **XMLHttpRequest** object to send a GET request to the GitHub API, just like we did with Fetch API above. We then use the onload event handler to process the response when it's ready. If the request is successful (status code 200), we parse the response text as JSON, and then create some HTML content that displays the user's name, avatar, and url. If the request fails, we log the response text to the console. | ||
+ | |||
+ | Finally, we call the loadUsers function to kick off the AJAX request when the script loads. | ||
+ | |||
+ | This will fetch data from the server without a page reload, in true AJAX style! | ||
+ | |||
+ | <code javascript fetch-true-ajax-style.html> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | |||
+ | <div id=" | ||
+ | |||
+ | < | ||
+ | function loadUsers() { | ||
+ | var xhr = new XMLHttpRequest(); | ||
+ | xhr.open(" | ||
+ | xhr.onload = function () { | ||
+ | if (xhr.readyState == 4 && xhr.status == " | ||
+ | var users = JSON.parse(xhr.responseText); | ||
+ | var html = ''; | ||
+ | for(var user of users){ | ||
+ | html += `< | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | } | ||
+ | document.getElementById(' | ||
+ | } else { | ||
+ | console.error(xhr.responseText); | ||
+ | } | ||
+ | } | ||
+ | xhr.send(); | ||
+ | } | ||
+ | |||
+ | loadUsers(); | ||
+ | |||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | <note tip> | ||
+ | Node.js can certainly make HTTP requests to APIs or other servers using libraries like axios or node-fetch, or using built-in modules like http or https. These requests are indeed asynchronous, | ||
+ | While both AJAX in the browser and HTTP requests in Node.js involve asynchronous operations, they' | ||
+ | </ | ||
+ |
java-script/ajax-fetch.1691057940.txt.gz · Last modified: 2023/08/03 13:19 by odefta