1. async How to turn it into an asynchronous function? It starts with the keyword async function f() { return 1; } f().then(alert); // 1 //The results are the same as above async function f() { return Promise.resolve(1); } f().then(alert); // 1 //You can also use arrow function let hello = async () => { return "1" }; hello().then((value) => console.log(value)) //The return value can also be simplified like this hello().then(console.log) One of the characteristics of asynchronous functions: the return value of the function is guaranteed to be Adding the 2. await: You can use async function f() { let promise = new Promise((resolve, reject) => { setTimeout(() => resolve("boom!"), 1000) }); let result = await promise; // Wait until promise resolves. alert(result); // "Boom!" } f(); //Get result and continue to execute. So the above code displays "Boom!" after 1 second.
3. Comprehensive Application With async function A() { let response = await fetch('c.jpg'); let myBlob = await response.blob(); let objectURL = URL.createObjectURL(myBlob); let image = document.createElement('img'); image.src = objectURL; document.body.appendChild(image); } A() .catch(e => { console.log('Problem: ' + e.message); }); You wrap your code with fewer This is the end of this article about how to use JS You may also be interested in:
|
<<: Docker case analysis: Building a MySQL database service
How to install Nginx in a specified location in C...
The LIKE operator is used in the WHERE clause to ...
XMeter API provides a one-stop online interface t...
Table of contents Require Implementation Code dat...
In Linux system, both chmod and chown commands ca...
Table of contents 1. Database constraints 1.1 Int...
Preface As we all know, bash (the B ourne-A gain ...
When position is absolute, the percentage of its ...
Table of contents 1. Check the number of Linux bi...
The difference between replace into and insert in...
Table of contents Preface Vue update view patch s...
<br />The information on web pages is mainly...
1. Overview of DDL Atomicity Before 8.0, there wa...
Install Make sure your user has permission to ins...
Install MySQL 8.0 docker run -p 63306:3306 -e MYS...