XMLHttpRequest

From MozillaZine Knowledge Base
Revision as of 00:42, 27 September 2005 by Cdvddt (talk | contribs) (Attaching context info for multiple async calls)
Jump to navigationJump to search

This page is part of the extension development documentation project.

Ask your questions in MozillaZine Forums. Also try browsing example code.

Note: development documentation is in process of being moved to Mozilla Development Center (MDC).

XMLHttpRequest is a JavaScript object that was created by Microsoft and adopted by Mozilla. You can use it to easily retrieve data via HTTP. Despite its name, it can be used for more than just XML documents.

Basic Usage

Using XMLHttpRequest is very simple. You create an instance of the object, open a URL, and send the request. The HTTP status code of the result, as well as the result document are available in the request object afterwards.

Example

req = new XMLHttpRequest();
req.open('GET', 'http://www.mozilla.org/', false); 
req.send(null);
if(req.status == 200)
  dump(req.responseText);

Note that this example works synchronously, so it will block the user interface if you call this from your javascript. You should not use this in practice.

Asynchronous Usage

If you intend to use XMLHttpRequest from an extension, you should let it load asynchronously. In asynchronous usage, you get a callback when the data has been received, which lets the browser continue to work as normal while your request is happening.

Example

req = new XMLHttpRequest();
req.open('GET', 'http://www.mozilla.org/', true);
req.onreadystatechange = function () {
  if (req.readyState == 4) {
     if(req.status == 200)
      dump(req.responseText);
     else
      dump("Error loading page\n");
  }
};
req.send(null);
 

Multiple asynchronous calls

If you want to fire several asynchronous calls, be carefull that that the response may not arrive in the same order (due to transfer latency). To handle correctly such cases, you have to mark your transactions to recognize them. To do that, you can attach any "user" property to the XMLHttpRequest object. You should also create a new XMLHttpRequest for each transaction.

Then, use the onload() event instead of the onreadystatechange(). This property is a real "event" listener. An "event" object is passed to this callback function with the "target" property pointing to the XMLHttpRequest. Then, you can get back the custom object you attached to it.

Example

for(var i=0; i<10; i++) {

 var req = new XMLHttpRequest();
 
 // Init request
 req.open('GET', 'http://www.mozilla.org/', true);

 // Attach custom data
 req.myData = "request nb : " + i;

 req.onload = function(event) {
 
  // The current request object object 
  var self = event.target;
 
  dump(self.myData + "\n");
  dump(self.responseText);
 
 }
 req.send(null);
 
};


Other Properties and Methods

In addition to the properties and methods shown above, there are other useful properties and methods on the request object.

responseXML and overrideMimeType()

If you load an XML document, the responseXML property will contain the document as an XMLDocument object that you can manipulate using DOM methods. For loaded non-XML documents (whose Content-Type header does not indicate XML content), the responseXML property is null. If you know in advance that the document is valid XML, you can remedy and override a broken Content-Type header, by invoking overrideMimeType('text/xml') (perhaps tucking on '; charset=iso-8859-1' or similar, as needed) before the send() call.

var req = new XMLHttpRequest();
req.open('GET', 'http://www.example.com/really-xml.txt', false);
req.overrideMimeType('text/xml');
req.send(null);
alert(req.responseXML);

setRequestHeader()

This method can be used to set an HTTP header on the request before you send it.

req = new XMLHttpRequest();
req.open('GET', 'http://www.mozilla.org/', true);
req.setRequestHeader("X-Foo", "Bar");
req.send(null);

getResponseHeader()

This method can be used to get an HTTP header from the server response.

req = new XMLHttpRequest();
req.open('GET', 'http://www.mozilla.org/', true);
req.send(null);
dump("Content-Type: " + req.getResponseHeader("Content-Type") + "\n");

References

  1. XULPlanet documentation
  2. Microsoft documentation
  3. "Using the XMLHttpRequest Object" (jibbering.com)
  4. Sarissa: Sarissa is a cross-browser ECMAScript library for client side XML manipulation, including loading XML from URLs or strings, performing XSLT transformations, XPath queries and more. Supported: Gecko (Mozilla, Firefox etc), IE, KHTML (Konqueror, Safari). If you're writing JavaScript that is used in both XUL applications and HTML pages, and the HTML pages may be viewed in non-Gecko-based applications (such as Internet Explorer, Opera, Konqueror, Safari), you should consider using Sarissa to parse and/or serialize XML. Note: Do not create a DOM object using document.implementation.createDocument() and then use Sarissa classes and methods to manipulate that object. It will not work. You must use Sarissa to create the initial DOM object.