Detailed explanation of the initial use of Promise in JavaScript asynchronous programming

Detailed explanation of the initial use of Promise in JavaScript asynchronous programming

1. Overview

The Promise object is a specification for asynchronous programming proposed by ES6. When it comes to asynchronous programming, we have to talk about the concepts of synchronization and asynchrony.

If we understand synchronous programming literally, it seems to mean that two tasks run synchronously. This is a wrong understanding (at least I had this misunderstanding before I came into contact with this concept). Synchronous and asynchronous refer to the order in which the code specifies execution (the execution order of the structured programming paradigm is always from top to bottom and from front to back). If the execution order is the same as the code, it is synchronous; if it is different, it is asynchronous.

Initially, operating systems were command-line based, and all languages ​​were designed with synchronous statements. In this case, there was no need for asynchronous programming. But soon, the graphical operating interface came out, and all programming languages ​​had to deal with GUI. What we must understand is that a GUI program is an interface program that is constantly drawing:

while(done)
{
    dosomething();
    drawGUI();
}

If the event of the task dosomething() executed in each loop is too long, the interface will not receive drawing commands for a long time, and the intuitive manifestation is lag. To solve this problem, browsers that use JavaScript as scripts generally adopt the event loop mechanism:

  • Time-consuming behaviors are defined as events, and events are bound to response callback functions.
  • Each loop, prioritize synchronous code.
  • The synchronous code is completed, and the events are traversed in the order in which they are executed.
  • In the remaining loop without synchronization code, the corresponding functions of the events are executed in sequence.

In this way, in the case of single thread, the execution order of tasks is modified and an asynchronous mechanism is implemented. Because the synchronization behavior is always completed quickly and the interface is drawn in time, the interface lag phenomenon is greatly improved.

The event loop mechanism defines the input and output of UI devices as events. In fact, there are many time-consuming behaviors, but they are generally related to IO. For IO-related behaviors, JavaScript provides asynchronous behavior codes. For example, here is an example of loading a picture.

2. Detailed discussion

First, prepare an HTML page PromiseTest.html and load the JS script PromiseTest.js in this HTML page:

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <script src="./3rdParty/jquery-3.5.1.js"></script>
    <title>Sample</title>
</head>

<body>
    <div id = "container"> </div>
    <script src="./PromiseTest.js"></script>
</body>

</html>

The native JS image object Image implements asynchronous loading of images through events:

$(function () {    
    var img = new Image();
    img.onload = function () { 
        $(img).appendTo($('#container'));        
    };
    img.src = "./img.jpg";    
});

Add a corresponding function to the onload event handler of Image. When the image is loaded, add the loaded Image to a div element child node of the HTML page. Open this page through the browser and the picture of the corresponding address will be displayed directly.

Of course, this JS script can also be rewritten through Promise:

$(function () {    
    function getImg(uri){
        return new Promise(function(resolve, reject){
            var img = new Image();
            img.onload = function () {
                resolve(img);
            };
            img.onerror = function () {
                reject(Error("Load Image Error!"));
            }
            img.src = uri;
        });   
    }  
    
    var imgUri = "./img.jpg";
    getImg(imgUri).then(function(img){
        $(img).appendTo($('#container')); 
    }, function(error){
        console.error("Failed!", error);
    })
});

At first glance, using Promise seems to make the program more complicated and cumbersome. But we need to deeply understand the connotation of the Promise mechanism. This design is not for fun.

  • A Promise object represents an action that is scheduled to be performed but has not yet started. Since it is an action, of course it must be planned and the results of the action must be specified: if it succeeds, execute resolve; if it fails, execute reject. Generally we can define a function and return a Promise object.
  • Call the function that returns the Promise object, so that the desired behavior is actually started. However, resolve and reject are just two callback functions, so the then method is used to specify the actual processing functions corresponding to success and failure.

As you can see, this design looks complicated, but it is very much like a synchronous behavior: specify an unfinished behavior object, how to handle it when the behavior is completed, and how to handle it when the behavior fails. And this is also the purpose of Promise: to make asynchronous operations more like synchronous behavior.

3. References

Synchronous and Asynchronous

Briefly describe the principle of JS single-threaded asynchronous implementation

Detailed explanation of JavaScript operation mechanism: Let’s talk about Event Loop again

This is the end of this article about the initial use of Promise in JavaScript asynchronous programming. For more relevant content on the use of js Promise, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JavaScript uses promise to handle multiple repeated requests
  • Example analysis of the usage of node.js Promise object
  • Detailed explanation of using Promise in WeChat applet JS script to optimize function processing
  • js uses Promise to implement simple Ajax caching
  • Using Promise in JS to implement traffic light example code (demo)
  • Detailed explanation of the use of Promise in JavaScript
  • Detailed explanation of Promise usage in javascript

<<:  Detailed explanation of the standard MySQL (x64) Windows version installation process

>>:  Summary of Docker Data Storage

Recommend

Vue implements simple notepad function

This article example shares the specific code of ...

Implementation of JavaScript downloading linked images and uploading them

Since we are going to upload pictures, the first ...

Why MySQL does not recommend using null columns with default values

The answer you often hear is that using a NULL va...

Summary of ten principles for optimizing basic statements in MySQL

Preface In the application of database, programme...

A brief discussion on the fun of :focus-within in CSS

I believe some people have seen this picture of c...

The pitfall record of the rubber rebound effect of iOS WeChat H5 page

Business requirements One of the projects I have ...

A brief discussion on which fields in Mysql are suitable for indexing

Table of contents 1 The common rules for creating...

Detailed explanation of Linux less command examples

less file name View File less file name | grep -n...

Use pictures to realize personalized underline of hyperlinks

Don't be surprised if you see some kind of und...

How to view the status of remote server files in Linux

As shown below: The test command determines wheth...

How to solve the element movement caused by hover-generated border

Preface Sometimes when hover pseudo-class adds a ...

Basic usage tutorial of IPTABLES firewall in LINUX

Preface For production VPS with public IP, only t...

Commonly used HTML format tags_Powernode Java Academy

1. Title HTML defines six <h> tags: <h1&...