1. OverviewThe 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:
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 discussionFirst, 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.
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. ReferencesSynchronous 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:
|
<<: Detailed explanation of the standard MySQL (x64) Windows version installation process
>>: Summary of Docker Data Storage
This article example shares the specific code of ...
Since we are going to upload pictures, the first ...
Copy code The code is as follows: <style> ....
The answer you often hear is that using a NULL va...
Preface In the application of database, programme...
I believe some people have seen this picture of c...
Business requirements One of the projects I have ...
Table of contents 1 The common rules for creating...
less file name View File less file name | grep -n...
Don't be surprised if you see some kind of und...
Set the table's style="table-layout:fixed...
As shown below: The test command determines wheth...
Preface Sometimes when hover pseudo-class adds a ...
Preface For production VPS with public IP, only t...
1. Title HTML defines six <h> tags: <h1&...