java-script:ajax-fetch
This is an old revision of the document!
Ajax fetch example
AJAX (Asynchronous JavaScript and XML) and async JavaScript both deal with asynchronous behavior in JavaScript, but they are used for different things.
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
This code sends a GET request to 'https://api.github.com', then logs the returned data to the console.
- ajax-fetch.html
<!DOCTYPE html> <html> <body> <h1>Fetch API Example</h1> <script> fetch('https://api.github.com', { method: 'GET', }) .then(response => response.json()) .then(data => console.log(data)) .catch((error) => console.error('Error:', error)); </script> </body> </html>
java-script/ajax-fetch.1691058052.txt.gz · Last modified: 2023/08/03 13:20 by odefta