Initially using the callback function Because there was no clear official specification for js at the beginning, there was no clear specification for the parameters in the callback functions passed in the asynchronous functions encapsulated in various third-party libraries, and the meaning of each parameter was not clear, which made it inconvenient to use. But there are clear specifications in node Callback mode in node: 1. All callback functions must have two parameters, the first parameter indicates the error, and the second parameter indicates the result 2. All callback functions must be the last parameter of the function 3. All callback functions cannot appear as attributes es6 asynchronous processing modelAfter the emergence of Es6, the official proposed specifications for asynchronous processing and a processing model suitable for all asynchronous scenarios. The model has:
After the task is in the resolved state, subsequent processing may be required.
API tailored for this asynchronous model: promiseHow to use promises Copy const task = new Promise((resolve, reject) => { // Code for pending task stage // Execute immediately console.log("Start 100-meter long-distance running"); setTimeout(() => { if (Math.random() > 0.5) { // Success: Finished // Push to success resolve("finished"); } else { // Failure: Broken leg // Push to failure reject("Broken leg"); } }, 1000) }); task.then((result) => { console.log(result); }).catch((error) => { console.log(error); }) After 1 second, the task is pushed to resolved, and subsequent processing is handled in then or catch. Notice pending status = > rejected status: Copy
Subsequent processing functions must be asynchronous and will be placed in the micro queue. After the js execution stack is cleared, the tasks in the micro queue will be executed first. After the tasks in the micro queue are cleared, the tasks in the macro queue will be executed.
Async await is the syntactic sugar of promise added in es7. You can also learn about it. This article only gives an overview of promise. There are many other details to master. The above is the details of JS ES6 asynchronous solution. For more information about ES6 asynchronous solution, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed explanation of 7 SSH command usages in Linux that you don’t know
>>: InnoDB type MySql restore table structure and data
Click here to return to the 123WORDPRESS.COM HTML ...
Table of contents 1. The concept of process and t...
The textarea tag is an HTML tag that we often use....
Overview For small and medium-sized projects, joi...
1. What are CSS methodologies? CSS methodologies ...
In this article, I will explain the relevant cont...
Let’s install Nginx and try it out. Please note t...
Table of contents Creating OAuth Apps Get the cod...
Scenario: As the amount of data increases, the di...
HTML is the abbreviation of Hypertext Markup Langu...
1. Basic Spring-boot Quick Start 1.1 Quick start ...
1. HBase Overview 1.1 What is HBase HBase is a No...
With the popularization of 3G, more and more peop...
This article shares the specific code for JavaScr...
Background of the problem The server monitoring s...