search
HomeWeb Front-endJS TutorialHow to use jQuery's Promise correctly
How to use jQuery's Promise correctlyJan 26, 2018 am 10:58 AM
jquerypromiseuse

How much do you know about how to use jQuery’s Promise? This article mainly shares with you how to use jQuery's Promise correctly, hoping to help you.

We previously learned about the Promise object of ES6, let’s take a look at Promise in jQuery, which is jQuery’s Deferred object.

Open the browser console first.


<script>
  var defer = $.Deferred();
  console.log(defer);
</script>

Running results:

looks a bit like the Promise object of ES6, and jQuery’s Deferred object also has resolve , reject, then methods, as well as done, fail, always... methods. jQuery uses this Deferred object to register callback functions for asynchronous operations, modify and transfer the status of asynchronous operations.

Play with Deferred:


<script>
  function runAsync(){
    var defer = $.Deferred();
    //做一些异步操作
    setTimeout(function(){
      console.log(&#39;执行完成&#39;);
      defer.resolve(&#39;异步请求成功之后返回的数据&#39;);
    }, 1000);
    return defer;
  }
  runAsync().then(function(data){
    console.log(data)
  });
</script>

After running, the instance defer of the Deferred object returns the parameter "data returned after the asynchronous request is successful" through the resolve method. Go to the then method to receive and print.

is similar to ES6 Promise, but there is a little difference. Let’s look at Promise again:


##

<script>
  function runAsync(){
    var p = new Promise(function(resolve, reject){
      
      setTimeout(function(){
        console.log(&#39;执行完成&#39;);
        resolve(&#39;异步请求成功之后返回的数据&#39;);
      }, 1000);
    });
    return p;      
  }

  runAsync().then(function(data){
    console.log(data);
  });
</script>

We found:

1. When creating a Deferred object, no parameters were passed; when creating a Promise object, parameters were passed (an anonymous function was passed, and the function also had two parameters: resolve, reject);

2. The Deferred object was called directly resolve method; while the Promise object is the resolve method called internally;

Description: The Deferred object itself has a resolve method, and the Promise object is assigned to the Promise object by executing the resolve method in the constructor. The status of the execution result.

This has a drawback: because the Deferred object has its own resolve method, after getting the Deferred object, you can call the resolve method at any time, and its status can be manually intervened


<script>
  function runAsync(){
    var defer = $.Deferred();
    //做一些异步操作
    setTimeout(function(){
      console.log(&#39;执行完成&#39;);
      defer.resolve(&#39;异步请求成功之后返回的数据&#39;);
    }, 1000);
    return defer;
  }
   var der = runAsync();
   der.then(function(data){
    console.log(data)
   });
   der.resolve(&#39;在外部结束&#39;); 
</script>

In this case, the status is set directly to the Deferred externally, printing "end externally", and printing "execution completed" after 1s, and "data returned after the asynchronous request is successful" will not be printed.

Obviously, this is not good. I sent an asynchronous request, but before the data was received, someone ended it for me externally. . . . . . .

Of course jQuery will definitely fill this pit. There is a promise method on the Deferred object, which is a restricted Deferred object


<script>
  function runAsync(){
    var def = $.Deferred();
    //做一些异步操作
    setTimeout(function(){
      console.log(&#39;执行完成&#39;);
      def.resolve(&#39;请求成功之后返回的数据&#39;);
    }, 2000);
    return def.promise(); //就在这里调用
  }
</script>

The so-called restricted The Deferred object is a Deferred object without resolve and reject methods. In this way, the state of the Deferred object cannot be changed outside.

The then method of the Deferred object and done and fail syntax sugar

We know that in the ES6 Promise specification, the then method accepts two parameters, namely execution completion and callback for execution failure, and jquery has been enhanced and can also accept the third parameter, which is the callback in the pending state, as follows:

deferred.then( doneFilter [, failFilter ] [ , progressFilter ] )

then method:


<script>
  function runAsync(){
    var def = $.Deferred();
    //做一些异步操作
    setTimeout(function(){
       var num = Math.ceil(Math.random()*10); //生成1-10的随机数
        if(num<=5){
          def.resolve(num);
        }
        else{
          def.reject(&#39;数字太大了&#39;);
        }
    }, 2000);
    return def.promise(); //就在这里调用
  }

  runAsync().then(function(d){
    console.log("resolve");
    console.log(d);
  },function(d){
    console.log("reject");
    console.log(d);
  })

</script>

The then method of the Deferred object can also perform chain operations.

done, fail syntax sugar, used to specify callbacks for execution completion and execution failure respectively, are equivalent to this code:

##

<script>
  function runAsync(){
    var def = $.Deferred();
    //做一些异步操作
    setTimeout(function(){
       var num = Math.ceil(Math.random()*10); //生成1-10的随机数
        if(num<=5){
          def.resolve(num);
        }
        else{
          def.reject(&#39;数字太大了&#39;);
        }
    }, 2000);
    return def.promise(); //就在这里调用
  }

  runAsync().done(function(d){
    console.log("resolve");
    console.log(d);
  }).fail(function(d){
    console.log("reject");
    console.log(d);
  })

</script>

Usage of always

There is also an always method on the Deferred object of jquery. Regardless of whether the execution is completed or failed, always will be executed, which is somewhat similar to complete in ajax.

#Usage of $.when

In jquery, there is also a $.when method to implement Promise. It has the same function as the all method in ES6 and performs asynchronous operations in parallel. , the callback function is executed only after all asynchronous operations have been executed. However, $.when is not defined in $.Deferred. You can tell by looking at the name, $.when, it is a separate method. It is slightly different from the all parameter of ES6. It does not accept an array, but multiple Deferred objects, as follows:

<script>
 function runAsync(){
    var def = $.Deferred();
    //做一些异步操作
    setTimeout(function(){
       var num = Math.ceil(Math.random()*10); //生成1-10的随机数
       def.resolve(num);  
    }, 2000);
    return def.promise(); //就在这里调用
  }
  $.when(runAsync(), runAsync(), runAsync()) .then(function(data1, data2, data3){
     console.log(&#39;全部执行完成&#39;);
     console.log(data1, data2, data3);
  });
</script>

There is no race in jquery like in ES6 Method? It's the method based on the fastest one. Right, it doesn't exist in jquery.

The above are the common methods of Deferred objects in jquery.

In the previous article and this article, one-time timers were used instead of asynchronous requests for data processing. Why don't you use ajax? It's not because of trouble. Here I want to talk about the connection between ajax and Deferred:

jquery's ajax returns a restricted Deferred object, that is, there is no resolve method and reject method, and it cannot be used from the outside. To change the state, since it is a Deferred object, all the features we mentioned above can also be used with ajax. For example, chain calls, sending multiple requests continuously:

<script>
req1 = function(){
  return $.ajax(/* **** */);
}
req2 = function(){
  return $.ajax(/* **** */);
}
req3 = function(){ 
  return $.ajax(/* **** */);
}
req1().then(req2).then(req3).done(function(){ console.log(&#39;请求发送完毕&#39;); });
</script>

success, error and complete

These three methods are our Commonly used ajax syntactic sugar.

$.ajax(/*...*/)
.success(function(){/*...*/})
.error(function(){/*...*/})
.complete(function(){/*...*/})

Sometimes I prefer to handle it internally as an attribute.

represents the callbacks of success, failure, and end of the ajax request respectively. What is the relationship between these three methods and Deferred? In fact, it is syntactic sugar, success corresponds to done, error corresponds to fail, and complete corresponds to always. That's it, just to keep the parameter names consistent with ajax.

Summary:

$.Deferred implements the Promise specification, then, done, fail, and always are the methods of the Deferred object. $.when is a global method used to run multiple asynchronous tasks in parallel, which is the same function as ES6's all. ajax returns a restricted Deferred object. Success, error, and complete are syntactic sugars provided by ajax. Their functions are consistent with done, fail, and always of the Deferred object.

Related recommendations:

Detailed explanation of promsie.all and promise sequence execution

Using Promise in JS to implement traffic light example code ( demo)

About the simple usage of promise objects

The above is the detailed content of How to use jQuery's Promise correctly. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
jquery怎么修改min-height样式jquery怎么修改min-height样式Apr 20, 2022 pm 12:19 PM

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

在Vue应用中遇到Uncaught (in promise) TypeError怎么办?在Vue应用中遇到Uncaught (in promise) TypeError怎么办?Jun 25, 2023 pm 06:39 PM

Vue是一款流行的前端框架,在开发应用时经常会遇到各种各样的错误和问题。其中,Uncaught(inpromise)TypeError是常见的一种错误类型。在本篇文章中,我们将探讨它的产生原因和解决方法。什么是Uncaught(inpromise)TypeError?Uncaught(inpromise)TypeError错误通常出现在

言出必行:兑现承诺的好处和坏处言出必行:兑现承诺的好处和坏处Feb 18, 2024 pm 08:06 PM

在日常生活中,我们常常会遇到承诺与兑现之间的问题。无论是在个人关系中,还是在商业交易中,承诺的兑现都是建立信任的关键。然而,承诺的利与弊也常常会引起争议。本文将探讨承诺的利与弊,并给出一些建议,如何做到言出必行。承诺的利是显而易见的。首先,承诺可以建立信任。当一个人信守承诺时,他会让别人相信自己是一个可信赖的人。信任是人与人之间建立起的纽带,它可以让人们更加

深入了解Promise.resolve()深入了解Promise.resolve()Feb 18, 2024 pm 07:13 PM

Promise.resolve()详解,需要具体代码示例Promise是JavaScript中一种用于处理异步操作的机制。在实际开发中,经常需要处理一些需要按顺序执行的异步任务,而Promise.resolve()方法就是用来返回一个已经Fulfilled状态的Promise对象。Promise.resolve()是Promise类的一个静态方法,它接受一个

实例解析ES6 Promise的原理和使用实例解析ES6 Promise的原理和使用Aug 09, 2022 pm 03:49 PM

利用Promise对象,把普通函数改成返回Promise的形式,解决回调地狱的问题。明白Promise的成功失败调用逻辑,可以灵活的进行调整。理解核心知识,先用起来,慢慢整合吸收知识。

PHP 函数返回 Promise 对象有什么优势?PHP 函数返回 Promise 对象有什么优势?Apr 19, 2024 pm 05:03 PM

优势:异步和非阻塞,不阻塞主线程;提高代码可读性和可维护性;内置错误处理机制。

promise对象有哪些promise对象有哪些Nov 01, 2023 am 10:05 AM

promise对象状态有:1、pending:初始状态,既不是成功,也不是失败状态;2、fulfilled:意味着操作成功完成;3、rejected:意味着操作失败。一个Promise对象一旦完成,就会从pending状态变为fulfilled或rejected状态,且不能再改变。Promise对象在JavaScript中被广泛使用,以处理如AJAX请求、定时操作等异步操作。

jquery里的parent是什么jquery里的parent是什么Apr 20, 2022 pm 02:33 PM

在jquery中,parent是一个内置的遍历方法,可以沿着DOM树向上遍历单一层级,并返回被选元素的直接父元素,语法“指定元素对象.parent(filter)”;该方法接受可省略的参数“filter”,用于过滤元素,缩小搜索父元素范围。

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor