Detailed explanation of Promises in JavaScript

Detailed explanation of Promises in JavaScript

Promise is a solution for asynchronous programming. It is an object that can obtain messages of asynchronous operations. It greatly improves the difficulties of asynchronous programming and avoids callback hell. It is more reasonable and powerful than traditional solutions such as callback functions and events.

Syntactically, a Promise is an object that can receive messages from asynchronous operations. Provides a unified API so that various asynchronous operations can be handled in the same way

1. Promise instances have three states:

(1) Pending

(2) Resolved

(3) Rejected

2. Promise instances have two processes

(1) pending > fulfilled: resolved

(2) pending > rejected: Rejected

Note: Once the status changes from purchase and sales to other status, the status can never be changed.

Basic usage of Promise:

1. Create a Promise object

The Promise object represents an asynchronous operation and has three states: pending (in progress), fulfilled (successful), and rejected (failed)

The Promise constructor accepts a function as a parameter, the two parameters of which are resolve and reject.

2. Promise method

Promise has five common methods:

(1)then()

The then method can receive two callback functions as parameters. The first callback function is called when the state of the Promise object changes to resoved, and the second callback function is called when the state of the Promise object changes to rejected. The second parameter can be omitted.

let promise = new Promise((resolve,reject)=>{
    ajax('first').success(function(res){
        resolve(res);
    })
})
promise.then(res=>{
    return new Promise((resovle,reject)=>{
        ajax('second').success(function(res){
            resolve(res)
        })
    })
}).then(res=>{
    return new Promise((resovle,reject)=>{
        ajax('second').success(function(res){
            resolve(res)
        })
    })
}).then(res=>{
 })

(2) catch()

This method is equivalent to the second parameter of the then method, pointing to the reject callback function.

Another function is that when executing the resolve callback function, if an error occurs and an exception is thrown, the execution will not stop but enter the catch method.

p.then((data) => {
     console.log('resolved',data);
},(err) => {
     console.log('rejected',err);
     }
); 
p.then((data) => {
    console.log('resolved',data);
}).catch((err) => {
    console.log('rejected',err);
});

(3) all()

The all method can complete and perform tasks. It receives an array, and each item in the array is a Promise object. When all the Promise states in the array reach resolved, the state of the all method will become resolved, if there is a state that becomes rejected. Then the status of all methods will become rejected.

javascript
let promise1 = new Promise((resolve,reject)=>{
	setTimeout(()=>{
       resolve(1);
	},2000)
});
let promise2 = new Promise((resolve,reject)=>{
	setTimeout(()=>{
       resolve(2);
	},1000)
});
let promise3 = new Promise((resolve,reject)=>{
	setTimeout(()=>{
       resolve(3);
	},3000)
});
Promise.all([promise1,promise2,promise3]).then(res=>{
    console.log(res);
    //The result is: [1,2,3] 
})

(4) receive()

The receive method is the same as all, and the received parameter is an array of Promises, but unlike all, when the first event is executed, the value of the promise object is directly returned.

The actual function of rece: When you want to do something but give up after a long time, you can use this method to solve it.

Promise.race([promise1, timeOutPromise(5000)]).then(res=>{})

(5) finally()

The finally method is used to specify an operation that will be performed regardless of the final state of the Promise object. (This method is introduced in ES2018 standard)

promise
.then(result => {···})
.catch(error => {···})
.finally(() => {···});

The callback function of the finally method does not accept any parameters, which means there is no way to know whether the previous Promise status is fulfilled or rejected.

promise
.finally(() => {
  // statements });
// equivalent to promise
.then(
  result => {
    // statement return result;
  },
  error => {
    //Statement throw error;
  }
);

In the above code, if the finally method is not written, the same statement needs to be written once for both success and failure. With the finally method, you only need to write it once

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • A Deep Dive into JavaScript Promises
  • Front-end JavaScript Promise
  • JS 9 Promise Interview Questions
  • How to add abort function to promise in JS
  • Thoroughly understand JavaScript's Promise

<<:  Pay attention to the use of HTML tags in web page creation

>>:  Optimizing the slow query of MySQL aggregate statistics data

Recommend

Detailed steps to install python3.7 on CentOS6.5

1. Download Python 3 wget https://www.python.org/...

The most comprehensive explanation of the locking mechanism in MySQL

Table of contents Preface Global Lock Full databa...

MySQL calculates the number of days, months, and years between two dates

The MySQL built-in date function TIMESTAMPDIFF ca...

7 Ways to Write a Vue v-for Loop

Table of contents 1. Always use key in v-for loop...

Share 5 JS high-order functions

Table of contents 1. Introduction 2. Recursion 3....

MySQL table and column comments summary

Just like code, you can add comments to tables an...

Specific use of nginx keepalive

The default request header of the http1.1 protoco...

How to install MySQL Community Server 5.6.39

This article records the detailed tutorial of MyS...

Tutorial on deploying nginx+uwsgi in Django project under Centos8

1. Virtual environment virtualenv installation 1....

Detailed explanation of the configuration method of Vue request interceptor

Follow the steps below 1. request.js content: htt...

Detailed description of shallow copy and deep copy in js

Table of contents 1. js memory 2. Assignment 3. S...

Detailed explanation of writing multiple conditions of CSS: not

The :not pseudo-class selector can filter element...

How to regularly clean up docker private server images

Using CI to build docker images for release has g...