jQuery.ajax()
Friday, January 14, 2011
Posted by
Bambang
Description: Perform an asynchronous HTTP (Ajax) request.
jQuery.ajax( settings )
settings
A set of key/value pairs that configure the Ajax request. All options are optional. A default can be set for any option with $.ajaxSetup().
async
Default: true
By default, all requests are sent asynchronous (i.e. this is set to true by default). If you need synchronous requests, set this option to false. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active.
beforeSend(XMLHttpRequest)
A pre-callback to modify the XMLHttpRequest object before it is sent. Use this to set custom headers etc. The XMLHttpRequest is passed as the only argument. This is an Ajax Event. You may return false in function to cancel the request.
cache
Default: true, false for dataType 'script' and 'jsonp'
If set to false it will force the pages that you request to not be cached by the browser.complete(XMLHttpRequest, textStatus) - Function
A function to be called when the request finishes (after success and error callbacks are executed). The function gets passed two arguments: The XMLHttpRequest object and a string describing the type of success of the request. This is an Ajax Event.
contentType - String
Default: 'application/x-www-form-urlencoded'
When sending data to the server, use this content-type. Default is "application/x-www-form-urlencoded", which is fine for most cases. If you explicitly pass in a content-type to $.ajax() then it'll always be sent to the server (even if no data is sent).
context - Object
This object will be made the context of all Ajax-related callbacks. For example specifying a DOM element as the context will make that the context for the complete callback of a request, like so:
$.ajax({ url: "test.html", context: document.body, success: function(){ $(this).addClass("done"); }});
data - Object, String
Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key i.e. {foo:["bar1", "bar2"]} becomes '&foo=bar1&foo=bar2'.
dataFilter(data, type) - Function
A function to be used to handle the raw responsed data of XMLHttpRequest.This is a pre-filtering function to sanitize the response.You should return the sanitized data.The function gets passed two arguments: The raw data returned from the server, and the 'dataType' parameter.
dataType - String
Default: Intelligent Guess (xml, json, script, or html)
The type of data that you're expecting back from the server. If none is specified, jQuery will intelligently try to get the results, based on the MIME type of the response (an XML MIME type will yield XML, in 1.4 JSON will yield a JavaScript object, in 1.4 script will execute the script, and anything else will be returned as a string). The available types (and the result passed as the first argument to your success callback) are:
- "xml": Returns a XML document that can be processed via jQuery.
- "html": Returns HTML as plain text; included script tags are evaluated when inserted in the DOM.
- "script": Evaluates the response as JavaScript and returns it as plain text. Disables caching unless option "cache" is used. Note: This will turn POSTs into GETs for remote-domain requests.
- "json": Evaluates the response as JSON and returns a JavaScript object. In jQuery 1.4 the JSON parsing is done in a strict manner, any malformed JSON is rejected and a parsererror is thrown.
- "jsonp": Loads in a JSON block using JSONP. Will add an extra "?callback=?" to the end of your URL to specify the callback.
- "text": A plain text string.
error(XMLHttpRequest, textStatus, errorThrown) - Function
A function to be called if the request fails. The function is passed three arguments: The XMLHttpRequest object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout", "error", "notmodified" and "parsererror". This is an Ajax Event.
global - Boolean
Default: true
Whether to trigger global Ajax event handlers for this request. The default is true. Set to false to prevent the global handlers like ajaxStart or ajaxStop from being triggered. This can be used to control various Ajax Events.
ifModified - Boolean
Default: false
Allow the request to be successful only if the response has changed since the last request. This is done by checking the Last-Modified header. Default value is false, ignoring the header. In jQuery 1.4 this technique also checks the 'etag' specified by the server to catch unmodified data.
jsonp - String
Override the callback function name in a jsonp request. This value will be used instead of 'callback' in the 'callback=?' part of the query string in the url for a GET or the data for a POST. So {jsonp:'onJsonPLoad'} would result in 'onJsonPLoad=?' passed to the server.
jsonpCallback - Function
Specify the callback function name for a jsonp request. This value will be used instead of the random name automatically generated by jQuery. It is preferable to let jQuery generate a unique name as it'll make it easier to manage the requests and provide callbacks and error handling. You may want to specify the callback when you want to enable better browser caching of GET requests.
password - String
A password to be used in response to an HTTP access authentication request.processData - Boolean
Default: true
By default, data passed in to the data option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option to false.
scriptCharset - String
Only for requests with "jsonp" or "script" dataType and "GET" type. Forces the request to be interpreted as a certain charset. Only needed for charset differences between the remote and local content.
success(data, textStatus, XMLHttpRequest) - Function
A function to be called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the 'dataType' parameter; and a string describing the status; and the XMLHttpRequest object. This is an Ajax Event.
timeout - Number
Set a local timeout (in milliseconds) for the request. This will override the global timeout, if one is set via $.ajaxSetup. For example, you could use this property to give a single request a longer timeout than all other requests that you've set to time out in one second. See $.ajaxSetup() for global timeouts.
traditional - Boolean
Set this to true if you wish to use the traditional style of param serialization.type - String
Default: 'GET'
The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers.
url - String
Default: The current page
A string containing the URL to which the request is sent. username - String
A username to be used in response to an HTTP access authentication request.xhr - Function
Callback for creating the XMLHttpRequest object. Defaults to the ActiveXObject when available (IE), the XMLHttpRequest otherwise. Override to provide your own implementation for XMLHttpRequest or enhancements to the factory.
The
At its simplest, the $.ajax()
function underlies all Ajax requests sent by jQuery. It is often unnecessary to directly call this function, as several higher-level alternatives like $.get()
and .load()
are available and are easier to use. If less common options are required, though, $.ajax()
can be used more flexibly.$.ajax()
function can be called with no arguments:$.ajax();
Note: Default settings can be set globally by using the
$.ajaxSetup()
function.This example, using no options, loads the contents of the current page, but does nothing with the result. To use the result, we can implement one of the callback functions.
Callback Functions
The
beforeSend
, error
, dataFilter
, success
and complete
options all take callback functions that are invoked at the appropriate times:beforeSend
is called before the request is sent, and is passed theXMLHttpRequest
object as a parameter.error
is called if the request fails. It is passed theXMLHttpRequest
object, a string indicating the error type, and an exception object if applicable.dataFilter
is called on success. It is passed the returned data and the value ofdataType
, and must return the (possibly altered) data to pass on tosuccess
.success
is called if the request succeeds. It is passed the returned data, as well as a string containing the success code.complete
is called when the request finishes, whether in failure or success. It is passed theXMLHttpRequest
object, as well as a string containing the success or error code.
To make use of the returned HTML, we can implement a
success
handler:$.ajax({ url: 'ajax/test.html', success: function(data) { $('.result').html(data); alert('Load was performed.'); } });
Such a simple example would generally be better served by using
.load()
or $.get()
.Data Types
The
$.ajax()
function relies on the server to provide information about the retrieved data. If the server reports the return data as XML, the result can be traversed using normal XML methods or jQuery's selectors. If another type is detected, such as HTML in the example above, the data is treated as text.Different data handling can be achieved by using the
dataType
option. Besides plain xml
, the dataType
can be html
, json
, jsonp
, script
, or text
.The
text
and xml
types return the data with no processing. The data is simply passed on to the success handler, either through the responseText
or responseHTML
property of the XMLHttpRequest
object, respectively.Note: We must ensure that the MIME type reported by the web server matches our choice of
dataType
. In particular, XML must be declared by the server as text/xml
or application/xml
for consistent results.If
html
is specified, any embedded JavaScript inside the retrieved data is executed before the HTML is returned as a string. Similarly, script
will execute the JavaScript that is pulled back from the server, then return the script itself as textual data.The
json
type parses the fetched data file as a JavaScript object and returns the constructed object as the result data. To do so, it uses JSON.parse()
when the browser supports it; otherwise it uses a Function
constructor. JSON data is convenient for communicating structured data in a way that is concise and easy for JavaScript to parse. If the fetched data file exists on a remote server, the jsonp
type can be used instead. This type will cause a query string parameter of callback=?
to be appended to the URL; the server should prepend the JSON data with the callback name to form a valid JSONP response. If a specific parameter name is desired instead of callback
, it can be specified with the jsonp
option to $.ajax()
.Note: JSONP is an extension of the JSON format, requiring some server-side code to detect and handle the query string parameter. More information about it can be found in the original post detailing its use.
When data is retrieved from remote servers (which is only possible using the
script
or jsonp
data types), the operation is performed using a <script>
tag rather than an XMLHttpRequest
object. In this case, no XMLHttpRequest
object is returned from $.ajax()
, nor is one passed to the handler functions such as beforeSend
.Sending Data to the Server
By default, Ajax requests are sent using the GET HTTP method. If the POST method is required, the method can be specified by setting a value for the
type
option. This option affects how the contents of the data
option are sent to the server.The
data
option can contain either a query string of the form key1=value1&key2=value2
, or a map of the form {key1: 'value1', key2: 'value2'}
. If the latter form is used, the data is converted into a query string before it is sent. This processing can be circumvented by setting processData
to false
. The processing might be undesirable if we wish to send an XML object to the server; in this case, we would also want to change the contentType
option from application/x-www-form-urlencoded
to a more appropriate MIME type.Advanced Options
The
global
option prevents handlers registered using .ajaxSend()
, .ajaxError()
, and similar methods from firing when this request would trigger them. This can be useful to, for example, suppress a loading indicator that was implemented with .ajaxSend()
if the requests are frequent and brief. See the descriptions of these methods below for more details.If the server performs HTTP authentication before providing a response, the user name and password pair can be sent via the
username
and password
options.Ajax requests are time-limited, so errors can be caught and handled to provide a better user experience. Request timeouts are usually either left at their default or set as a global default using
$.ajaxSetup()
rather than being overridden for specific requests with the timeout
option.By default, requests are always issued, but the browser may serve results out of its cache. To disallow use of the cached results, set
cache
to false
. To cause the request to report failure if the asset has not been modified since the last request, set ifModified
to true
.The
scriptCharset
allows the character set to be explicitly specified for requests that use a <script>
tag (that is, a type of script
or jsonp
). This is useful if the script and host page have differing character sets.The first letter in Ajax stands for "asynchronous," meaning that the operation occurs in parallel and the order of completion is not guaranteed. The
async
option to $.ajax()
defaults to true
, indicating that code execution can continue after the request is made. Setting this option to false
(and thus making the call no longer asynchronous) is strongly discouraged, as it can cause the browser to become unresponsive.The
$.ajax()
function returns the XMLHttpRequest
object that it creates. Normally jQuery handles the creation of this object internally, but a custom function for manufacturing one can be specified using the xhr
option. The returned object can generally be discarded, but does provide a lower-level interface for observing and manipulating the request. In particular, calling .abort()
on the object will halt the request before it completes.Examples:
Example: Load and execute a JavaScript file.
$.ajax({
type: "GET",
url: "test.js",
dataType: "script"
});
Example: Save some data to the server and notify the user once it's complete.
$.ajax({
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
success: function(msg){
alert( "Data Saved: " + msg );
}
});
Example: Retrieve the latest version of an HTML page.
$.ajax({
url: "test.html",
cache: false,
success: function(html){
$("#results").append(html);
}
});
Example: Loads data synchronously. Blocks the browser while the requests is active. It is better to block user interaction by other means when synchronization is necessary.
var html = $.ajax({
url: "some.php",
async: false
}).responseText;
Example: Sends an xml document as data to the server. By setting the processData option to false, the automatic conversion of data to strings is prevented.
var xmlDocument = [create xml document];
$.ajax({
url: "page.php",
processData: false,
data: xmlDocument,
success: handleResponse
});
Example: Sends an id as data to the server, save some data to the server and notify the user once it's complete.
bodyContent = $.ajax({
url: "script.php",
global: false,
type: "POST",
data: ({id : this.getAttribute('id')}),
dataType: "html",
success: function(msg){
alert(msg);
}
}
).responseText;
Tags: jQuery, library
Subscribe to:
Post Comments (Atom)
Share your views...
0 Respones to "jQuery.ajax()"
Post a Comment