Path: blob/main/files/en-us/web/guide/ajax/getting_started/index.md
6546 views
------{{QuickLinksWithSubpages("/en-US/docs/Web/Guide/AJAX")}}
This article guides you through the AJAX basics and gives you some simple hands-on examples to get you started.
What's AJAX?
AJAX stands for Asynchronous JavaScript And XML. In a nutshell, it is the use of the XMLHttpRequest object to communicate with servers. It can send and receive information in various formats, including JSON, XML, HTML, and text files. AJAX's most appealing characteristic is its "asynchronous" nature, which means it can communicate with the server, exchange data, and update the page without having to refresh the page.
The two major features of AJAX allow you to do the following:
Make requests to the server without reloading the page
Receive and work with data from the server
Step 1 – How to make an HTTP request
To make an HTTP request to the server with JavaScript, you need an instance of an object with the necessary functionality. This is where XMLHttpRequest comes in.
After making a request, you will receive a response back. At this stage, you need to tell the XMLHttpRequest object which JavaScript function will handle the response, by setting the onreadystatechange property of the object to the function called when the request changes state, like this:
Note that there are no parentheses or parameters after the function name, because you're assigning a reference to the function, rather than actually calling it. Alternatively, instead of giving a function name, you can use the JavaScript technique of defining functions on the fly (called "anonymous functions") to define the actions that will process the response, like this:
Next, after declaring what happens when you receive the response, you need to actually make the request, by calling the open() and send() methods of the HTTP request object, like this:
The first parameter of the call to
open()is the HTTP request method – GET, POST, HEAD, or another method supported by your server. Keep the method all-capitals as per the HTTP standard, otherwise some browsers (like Firefox) might not process the request. For more information on the possible HTTP request methods, check the specification.The second parameter is the URL you're sending the request to. As a security feature, you cannot call URLs on 3rd-party domains by default. Be sure to use the exact domain name on all of your pages or you will get a "permission denied" error when you call
open(). A common pitfall is accessing your site bydomain.tld, but attempting to call pages withwww.domain.tld. If you really need to send a request to another domain, see HTTP access control (CORS).The optional third parameter sets whether the request is asynchronous. If
true(the default), JavaScript execution will continue and the user can interact with the page while the server response has yet to arrive. This is the first A in AJAX.
The parameter to the send() method can be any data you want to send to the server if POST-ing the request. Form data should be sent in a format that the server can parse, like a query string:
or other formats, like multipart/form-data, JSON, XML, and so on.
Note that if you want to POST data, you may have to set the MIME type of the request. For example, use the following before calling send() for form data sent as a query string:
Step 2 – Handling the server response
When you sent the request, you provided the name of a JavaScript function to handle the response:
What should this function do? First, the function needs to check the request's state. If the state has the value of XMLHttpRequest.DONE (corresponding to 4), that means that the full server response was received and it's OK for you to continue processing it.
The full list of the readyState values is documented at XMLHTTPRequest.readyState and is as follows:
0 (uninitialized) or (request not initialized)
1 (loading) or (server connection established)
2 (loaded) or (request received)
3 (interactive) or (processing request)
4 (complete) or (request finished and response is ready)
Next, check the HTTP response status codes of the HTTP response. In the following example, we differentiate between a successful and unsuccessful AJAX call by checking for a 200 OK response code.
After checking the state of the request and the HTTP status code of the response, you can do whatever you want with the data the server sent. You have two options to access that data:
httpRequest.responseText– returns the server response as a string of texthttpRequest.responseXML– returns the response as anXMLDocumentobject you can traverse with JavaScript DOM functions
Note that the steps above are valid only if you used an asynchronous request (the third parameter of open() was unspecified or set to true). If you used a synchronous request you don't need to specify a function, but this is highly discouraged as it makes for an awful user experience.
Step 3 – A Simple Example
Let's put it all together with a simple HTTP request. Our JavaScript will request an HTML document, test.html, which contains the text "I'm a test." Then we'll alert() the contents of the response. Note that this example uses vanilla JavaScript — no jQuery is involved. Also, the HTML, XML and PHP files should be placed in the same directory.
In this example:
The user clicks the "Make a request" button;
The event handler calls the
makeRequest()function;The request is made and then (
onreadystatechange) the execution is passed toalertContents();alertContents()checks if the response was received and OK, thenalert()s the contents of thetest.htmlfile.
Note: If you do not set header
Cache-Control: no-cachethe browser will cache the response and never re-submit the request, making debugging challenging. You can also add an always-different GET parameter, like a timestamp or random number (see bypassing the cache)
Note: If the
httpRequestvariable is used globally, competing functions callingmakeRequest()can overwrite each other, causing a race condition. Declaring thehttpRequestvariable local to a closure containing the AJAX functions avoids this.
In the event of a communication error (such as the server going down), an exception will be thrown in the onreadystatechange method when accessing the response status. To mitigate this problem, you could wrap your if...else statement in a try...catch:
Step 4 – Working with the XML response
In the previous example, after receiving the response to the HTTP request we used the request object's responseText property, which contained the contents of the test.html file. Now let's try the responseXML property.
First off, let's create a valid XML document that we'll request later on. The document (test.xml) contains the following:
Next, in makeRequest(), we need to replace test.html with the XML file we just created:
Then in alertContents(), we need to replace the line alert(httpRequest.responseText); with:
This code takes the XMLDocument object given by responseXML and uses DOM methods to access some of the data contained in the XML document.
Step 5 – Working with data
Finally, let's send some data to the server and receive a response. Our JavaScript will request a dynamic page this time, test.php, which will take the data we send and return a "computed" string - "Hello, [user data]!" - which we'll alert().
First we'll add a text box to our HTML so the user can enter their name:
We'll also add a line to our event handler to get the user's data from the text box and send it to the makeRequest() function along with the URL of our server-side script:
We need to modify makeRequest() to accept the user data and pass it along to the server. We'll change the request method from GET to POST, and include our data as a parameter in the call to httpRequest.send():
The function alertContents() can be written the same way it was in Step 3 to alert our computed string, if that's all the server returns. However, let's say the server is going to return both the computed string and the original user data. So if our user typed "Jane" in the text box, the server's response would look like this:
To use this data within alertContents(), we can't just alert the responseText, we have to parse it and alert computedString, the property we want:
The test.php file should contain the following:
For more on DOM methods, be sure to check out Document Object Model (DOM).
Simple timed XHR example
Another simple example follows — here we are loading a text file via XHR, the structure of which is assumed to be like this:
Once the text file is loaded, we split() the items into an array at each newline character (\n — basically where each line break is in the text file), and then print the complete list of timestamps, and the last timestamp, onto the page.
This is repeated every 5 seconds, using a setInterval() call. The idea would be that a server-side script of some kind would continually update the text file with new timestamps, and our XHR code would be used to report the latest timestamp on the client-side.