There is lots of confusion in some of the function of jquery like $.ajax, $.get, $.post, $.getScript, $.getJSON that what is the difference among them which is the best, which is the fast, which to use and when so below is the description of them to make them clear and to get rid of this type of confusions.
get: function(url, data, callback, type) {
if ($.isFunction(data)) {
callback = data;
data = null;
}
return $.ajax({
type: "GET",
url: url,
data: data,
success: callback,
dataType: type
});
}
post: function(url, data, callback, type) {
if ($.isFunction(data)) {
callback = data;
data = {};
}
return $.ajax({
type: "POST",
url: url,
data: data,
success: callback,
dataType: type
});
}$.getJSON() function is a shorthand Ajax function (internally use $.get() with data type script), which is equivalent to below expression, Uses some limited criteria like Request type is GET and data Type is json.
getScript: function(url, callback) {
return $.get(url, null, callback, "script");
}
getJSON: function(url, data, callback) {
return $.get(url, data, callback, "json");
}
And in both of the function ($.getScript(), $.getJSON()) there is also no any error callback only you can track succeed callback and there no standard setting supported like beforeSend, statusCode, mimeType etc, if you want it use $.ajax().
reference: http://www.dotnetbull.com/2012/07/jquery-post-vs-get-vs-ajax.html
No comments:
Post a Comment