Home Web Front-end JS Tutorial Detailed explanation of jQuery's deferred object_jquery

Detailed explanation of jQuery's deferred object_jquery

May 16, 2016 pm 04:31 PM
jquery

1. What is a deferred object?

In the process of developing websites, we often encounter certain JavaScript operations that take a long time. Among them, there are both asynchronous operations (such as ajax reading server data) and synchronous operations (such as traversing a large array), and the results are not available immediately.

The usual approach is to specify callback functions for them. That is, specify in advance which functions should be called once they have finished running.

However, jQuery is very weak when it comes to callback functions. In order to change this, the jQuery development team designed the deferred object.

To put it simply, the deferred object is jQuery’s callback function solution. In English, defer means "delay", so the meaning of a deferred object is to "delay" execution until a certain point in the future.

It solves the problem of how to handle time-consuming operations, provides better control over those operations, and a unified programming interface. Its main functions can be summarized into four points. Below we will learn step by step through sample code.

2. Chain writing method of ajax operation

First, let’s review the traditional way of writing jQuery’s ajax operation:

Copy code The code is as follows:

$.ajax({
URL: "test.html",
Success: function(){
alert("Haha, successful!");
  },
​​error:function(){
alert("Something went wrong!");
  }
});

In the above code, $.ajax() accepts an object parameter. This object contains two methods: the success method specifies the callback function after the operation is successful, and the error method specifies the callback function after the operation fails.

After the $.ajax() operation is completed, if you are using a version of jQuery lower than 1.5.0, the XHR object will be returned and you cannot perform chain operations; if the version is higher than 1.5.0, the returned Deferred objects can be chained.

Now, the new way of writing is this:

Copy code The code is as follows:

​$.ajax("test.html")
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });

As you can see, done() is equivalent to the success method, and fail() is equivalent to the error method. After adopting the chain writing method, the readability of the code is greatly improved.

3. Specify multiple callback functions for the same operation

One of the great benefits of the deferred object is that it allows you to add multiple callback functions freely.

Taking the above code as an example, if after the ajax operation is successful, in addition to the original callback function, I also want to run another callback function, what should I do?

It’s very simple, just add it at the end.

Copy code The code is as follows:

​$.ajax("test.html")
​.done(function(){ alert("Haha, successful!");} )
​.fail(function(){ alert("Error!"); } )
​.done(function(){ alert("Second callback function!");} );

You can add as many callback functions as you like, and they will be executed in the order they are added.

4. Specify callback functions for multiple operations

Another great benefit of the deferred object is that it allows you to specify a callback function for multiple events, which is not possible with traditional writing.

Please look at the following code, which uses a new method $.when():

Copy code The code is as follows:

​$.when($.ajax("test1.html"), $.ajax("test2.html"))
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });

The meaning of this code is to first perform two operations $.ajax("test1.html") and $.ajax("test2.html"). If both are successful, run the callback specified by done() function; if one fails or both fail, the callback function specified by fail() is executed.

5. Callback function interface for common operations (Part 1)

The biggest advantage of the deferred object is that it extends this set of callback function interfaces from ajax operations to all operations. In other words, any operation - whether it is an ajax operation or a local operation, whether it is an asynchronous operation or a synchronous operation - can use various methods of the deferred object to specify a callback function.

Let’s look at a specific example. Suppose there is a time-consuming operation wait:

Copy code The code is as follows:

var wait = function(){
  var tasks = function(){
alert("Execution completed!");
  };
  setTimeout(tasks,5000);
};


What should we do if we specify a callback function for it?

Naturally, you will think that you can use $.when():

Copy code The code is as follows:

​$.when(wait())
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });
[code]

However, if written like this, the done() method will be executed immediately and will not function as a callback function. The reason is that the parameters of $.when() can only be deferred objects, so wait() must be rewritten:

[code]
var dtd = $.Deferred(); // Create a new deferred object
var wait = function(dtd){
  var tasks = function(){
alert("Execution completed!");
   dtd.resolve(); // Change the execution status of the deferred object
  };
  setTimeout(tasks,5000);
return dtd;
};

Now, the wait() function returns a deferred object, so chain operations can be added.

Copy code The code is as follows:

​$.when(wait(dtd))
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });

After the wait() function is run, the callback function specified by the done() method will automatically run.

6. deferred.resolve() method and deferred.reject() method

If you look carefully, you will find that there is another place in the wait() function above that I did not explain. That's what dtd.resolve() does?

To clarify this issue, we need to introduce a new concept "execution state". jQuery stipulates that deferred objects have three execution states - unfinished, completed and failed. If the execution status is "completed" (resolved), the deferred object immediately calls the callback function specified by the done() method; if the execution status is "failed", the callback function specified by the fail() method is called; if the execution status is "unsuccessful" Completed", continue to wait, or call the callback function specified by the progress() method (added in jQuery 1.7 version).

During the ajax operation in the previous part, the deferred object will automatically change its execution status based on the return result; however, in the wait() function, this execution status must be manually specified by the programmer. The meaning of dtd.resolve() is to change the execution status of the dtd object from "unfinished" to "completed", thus triggering the done() method.

Similarly, there is also a deferred.reject() method, which changes the execution status of the dtd object from "incomplete" to "failed", thereby triggering the fail() method.

Copy code The code is as follows:

var dtd = $.Deferred(); // Create a new Deferred object
var wait = function(dtd){
  var tasks = function(){
alert("Execution completed!");
   dtd.reject(); // Change the execution status of the Deferred object
  };
  setTimeout(tasks,5000);
return dtd;
};
​$.when(wait(dtd))
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });

7. deferred.promise() method

There are still problems with the way of writing above. That is, dtd is a global object, so its execution status can be changed from the outside.

Please look at the code below:

Copy code The code is as follows:

var dtd = $.Deferred(); // Create a new Deferred object
var wait = function(dtd){
  var tasks = function(){
alert("Execution completed!");
   dtd.resolve(); // Change the execution status of the Deferred object
  };
  setTimeout(tasks,5000);
return dtd;
};
​$.when(wait(dtd))
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });
​dtd.resolve();

I added a line of dtd.resolve() at the end of the code, which changed the execution status of the dtd object, thus causing the done() method to be executed immediately, and the "Haha, successful!" prompt box popped up, etc. 5 After a few seconds, the "Execution Completed!" prompt box will pop up.

To avoid this situation, jQuery provides the deferred.promise() method. Its function is to return another deferred object on the original deferred object. The latter only opens methods that are not related to changing the execution status (such as the done() method and fail() method), and blocks methods related to changing the execution status ( Such as resolve() method and reject() method), so that the execution status cannot be changed.

Please look at the code below:

Copy code The code is as follows:

var dtd = $.Deferred(); // Create a new Deferred object
var wait = function(dtd){
  var tasks = function(){
alert("Execution completed!");
   dtd.resolve(); // Change the execution status of the Deferred object
  };

  setTimeout(tasks,5000);
Return dtd.promise(); // Return promise object
};
var d = wait(dtd); // Create a new d object and operate on this object instead
​$.when(d)
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });
​d.resolve(); // At this time, this statement is invalid


In the above code, the wait() function returns a promise object. Then, we bind the callback function to this object instead of the original deferred object. The advantage of this is that the execution status of this object cannot be changed. If you want to change the execution status, you can only operate the original deferred object.

However, a better way to write it is as pointed out by allenm, to turn the dtd object into the internal object of the wait() function.

Copy code The code is as follows:

var wait = function(dtd){
  var dtd = $.Deferred(); //Within the function, create a new Deferred object
  var tasks = function(){
alert("Execution completed!");
   dtd.resolve(); // Change the execution status of the Deferred object
  };
  setTimeout(tasks,5000);
Return dtd.promise(); // Return promise object
};
​$.when(wait())
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });

8. Callback function interface for common operations (middle)

Another way to prevent the execution state from being changed externally is to use the constructor function $.Deferred() of the deferred object.

At this time, the wait function remains unchanged, we directly pass it into $.Deferred():

Copy code The code is as follows:

​$.Deferred(wait)
​.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });

jQuery stipulates that $.Deferred() can accept a function name (note, it is a function name) as a parameter, and the deferred object generated by $.Deferred() will be used as the default parameter of this function.

9. Callback function interface for common operations (Part 2)

In addition to the above two methods, we can also deploy the deferred interface directly on the wait object.

Copy code The code is as follows:

var dtd = $.Deferred(); // Generate Deferred object
var wait = function(dtd){
  var tasks = function(){
alert("Execution completed!");
   dtd.resolve(); // Change the execution status of the Deferred object
  };
  setTimeout(tasks,5000);
};
​dtd.promise(wait);
wait.done(function(){ alert("Haha, successful!"); })
​.fail(function(){ alert("Error!"); });
wait(dtd);


The key here is the line dtd.promise(wait), which is used to deploy the Deferred interface on the wait object. It is precisely because of this line that done() and fail() can be called directly on wait later.

10. Summary: Methods of deferred objects

We have already talked about the various methods of deferred objects. Here is a summary:

 (1) $.Deferred() generates a deferred object.

 (2) deferred.done() specifies the callback function when the operation is successful

(3) deferred.fail() specifies the callback function when the operation fails

 (4) When deferred.promise() has no parameters, it returns a new deferred object, and the running status of the object cannot be changed; when it accepts parameters, it serves to deploy the deferred interface on the parameter object.

 (5) deferred.resolve() Manually changes the running status of the deferred object to "Completed", thus triggering the done() method immediately.

 (6) deferred.reject() This method is exactly the opposite of deferred.resolve(). After being called, the running status of the deferred object will be changed to "failed", thus triggering the fail() method immediately.

  (7) $.when() specifies callback functions for multiple operations.

In addition to these methods, the deferred object also has two important methods, which are not covered in the above tutorial.

 (8)deferred.then()

Sometimes to save trouble, done() and fail() can be written together. This is the then() method.

Copy code The code is as follows:

​$.when($.ajax( "/main.php" ))
​.then(successFunc, failureFunc);

If then() has two parameters, then the first parameter is the callback function of the done() method, and the second parameter is the callback method of the fail() method. If then() has only one parameter, it is equivalent to done().

(9) deferred.always()

This method is also used to specify the callback function. Its function is that no matter whether deferred.resolve() or deferred.reject() is called, it will always be executed in the end.

Copy code The code is as follows:

​$.ajax( "test.html" )
​.always( function() { alert("Executed!");} );
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Detailed explanation of jQuery reference methods: Quick start guide Detailed explanation of jQuery reference methods: Quick start guide Feb 27, 2024 pm 06:45 PM

Detailed explanation of jQuery reference method: Quick start guide jQuery is a popular JavaScript library that is widely used in website development. It simplifies JavaScript programming and provides developers with rich functions and features. This article will introduce jQuery's reference method in detail and provide specific code examples to help readers get started quickly. Introducing jQuery First, we need to introduce the jQuery library into the HTML file. It can be introduced through a CDN link or downloaded

How to remove the height attribute of an element with jQuery? How to remove the height attribute of an element with jQuery? Feb 28, 2024 am 08:39 AM

How to remove the height attribute of an element with jQuery? In front-end development, we often encounter the need to manipulate the height attributes of elements. Sometimes, we may need to dynamically change the height of an element, and sometimes we need to remove the height attribute of an element. This article will introduce how to use jQuery to remove the height attribute of an element and provide specific code examples. Before using jQuery to operate the height attribute, we first need to understand the height attribute in CSS. The height attribute is used to set the height of an element

How to use PUT request method in jQuery? How to use PUT request method in jQuery? Feb 28, 2024 pm 03:12 PM

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

jQuery Tips: Quickly modify the text of all a tags on the page jQuery Tips: Quickly modify the text of all a tags on the page Feb 28, 2024 pm 09:06 PM

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: &lt

In-depth analysis: jQuery's advantages and disadvantages In-depth analysis: jQuery's advantages and disadvantages Feb 27, 2024 pm 05:18 PM

jQuery is a fast, small, feature-rich JavaScript library widely used in front-end development. Since its release in 2006, jQuery has become one of the tools of choice for many developers, but in practical applications, it also has some advantages and disadvantages. This article will deeply analyze the advantages and disadvantages of jQuery and illustrate it with specific code examples. Advantages: 1. Concise syntax jQuery's syntax design is concise and clear, which can greatly improve the readability and writing efficiency of the code. for example,

Use jQuery to modify the text content of all a tags Use jQuery to modify the text content of all a tags Feb 28, 2024 pm 05:42 PM

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on ​​the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

How to tell if a jQuery element has a specific attribute? How to tell if a jQuery element has a specific attribute? Feb 29, 2024 am 09:03 AM

How to tell if a jQuery element has a specific attribute? When using jQuery to operate DOM elements, you often encounter situations where you need to determine whether an element has a specific attribute. In this case, we can easily implement this function with the help of the methods provided by jQuery. The following will introduce two commonly used methods to determine whether a jQuery element has specific attributes, and attach specific code examples. Method 1: Use the attr() method and typeof operator // to determine whether the element has a specific attribute

Understand the role and application scenarios of eq in jQuery Understand the role and application scenarios of eq in jQuery Feb 28, 2024 pm 01:15 PM

jQuery is a popular JavaScript library that is widely used to handle DOM manipulation and event handling in web pages. In jQuery, the eq() method is used to select elements at a specified index position. The specific usage and application scenarios are as follows. In jQuery, the eq() method selects the element at a specified index position. Index positions start counting from 0, i.e. the index of the first element is 0, the index of the second element is 1, and so on. The syntax of the eq() method is as follows: $("s

See all articles