await is es7. async and await are new additions to ES7 and are solutions for asynchronous operations. As the name suggests, async means "asynchronous". Async is used to declare that a function is asynchronous; await literally means "waiting", which is used to wait for asynchronous completion. There is a strict rule between async and await. Both are inseparable from each other, and await can only be written in async functions.
The operating environment of this tutorial: Windows 7 system, ECMAScript version 7, Dell G3 computer.
The front-end asynchronous features proposed in the latest ES7 (ES2017): async, await.
1. What are async and await
async and await are new additions in ES7. For solutions to asynchronous operations, it is Syntactic sugar for Generator functions.
- async|await is a new way to write asynchronously. Promise was used before in ES6.
- async|await is a new writing method based on promise.
async|await is also non-blocking.
async, as the name suggests, means "asynchronous". async is used to declare that a function is asynchronous. And await literally means "waiting", which is used to wait for asynchronous completion.
Async and await have a strict rule. Both cannot be separated from each other. However, await can only be written in the async function.
2. Usage
How async handles the return value
The return value of async is a promise object. That is to say, it will directly encapsulate the return value into a promise object through the method in promise.
async function Async() { return "hello world"; } const result = Async(); console.log(result);
From the results, it seems that the async function returns a promise object, and it will directly encapsulate the return value into a promise object.
If there is no return value
async function Async() { console.log("hello world"); } let result1 = Async(); console.log(result1);
From the results, it seems that the async function returns a promise object, and the value at that time is undefined. therefore. In the absence of await, a promise object is returned and does not block subsequent statements.
But what is await waiting for?
function time(s) { return new Promise((resolve) => { setTimeout(resolve, ms); }); } async function Async(value, s) { await time(s); console.log(value); } Async('hello world', 50);
After specifying 50 milliseconds, hello world will be output.
Generally, await is used to wait for the async function to complete. Await waits for an expression, and the calculation result of the expression is a promise object or other value. Therefore, await can actually receive ordinary function calls or direct values.
If await is not waiting for a promise object, the result of the expression operation is what it is waiting for.
If it is a promise object, await will block the subsequent code. When the promise object is successfully processed, the value obtained is the operation result of the await expression. Although await blocks, await is in async. Async does not block. All blocking inside it is encapsulated in a promise object and executed asynchronously.
Any Promise object after an await statement changes to the reject state, then the execution of the entire async function will be interrupted.
async function Async() { await Promise.reject('出错了'); await Promise.resolve('hello world'); // 不会执行 } let result1 = Async(); console.log(result1);
Judging from the results, the second await statement will not be executed because the status of the first await statement changes to reject.
3. Error handling of Async function
If an error occurs in the asynchronous operation after await, then the promise object returned by the async function is rejected.
let a; async function f() { await Promise.reject('error'); a = await 1; // await 没有执行 } f().then(v => console.log(a));
From the results, when one of the awaits in the async function appears in the reject state, the subsequent awaits will not be executed. The general solution is to use try...catch.
// 正确的写法 let a; async function f() { try { await Promise.reject('error') } catch (error) { console.log(error); } a = await 1; return a; } f().then(v => console.log(a)); // 1
Judging from the results, this solves the problem very well. When there are multiple awaits that will not be executed, they can all be placed in try...catch.
4. Conclusion
Async|Advantages of await:
- async| await solves the problem of callback hell
- async|await supports concurrent execution
- async|await is more concise for asynchronous processing
- async|await can capture errors in try...catch
[Recommended learning: javascript advanced tutorial]
The above is the detailed content of Is await es6 or es7?. For more information, please follow other related articles on the PHP Chinese website!

在es6中,可以利用“Array.isArray()”方法判断对象是否为数组,若判断的对象是数组,返回的结果是true,若判断对象不是数组,返回的结果是false,语法为“Array.isArray(需要检测的js对象)”。

async是es7的。async和await是ES7中新增内容,是对于异步操作的解决方案;async/await可以说是co模块和生成器函数的语法糖,用更加清晰的语义解决js异步代码。async顾名思义是“异步”的意思,async用于声明一个函数是异步的;async和await有一个严格规定,两者都离不开对方,且await只能写在async函数中。

es6中遍历跟迭代的区别是:遍历强调的是要把整个数据依次全部取出来,是访问数据结构的所有元素;而迭代虽然也是依次取出数据,但是并不保证取多少,也不保证把所有的数据取完,是遍历的一种形式。

在es6中,可用Object对象的is()方法来判断两个对象是否相等,该方法检测两个变量的值是否为同一个值,判断两个对象的引用地址是否一致,语法“Object.is(对象1,对象2)”;该方法会返回布尔值,若返回true则表示两个对象相等。

转换方法:1、利用“+”给数字拼接一个空字符,语法“数字+""”;2、使用String(),可把对象的值转换为字符串,语法“String(数字对象)”;3、用toString(),可返回数字的字符串表示,语法“数字.toString()”。

在es6中,assign用于对象的合并,可以将源对象的所有可枚举属性复制到目标对象;若目标对象与源对象有同名属性,或多个源对象有同名属性,则后面的属性会覆盖前面的属性,语法为“Object.assign(...)”

await是es7。async和await是ES7中新增内容,是对于异步操作的解决方案。async顾名思义是“异步”的意思,async用于声明一个函数是异步的;而await从字面意思上是“等待”的意思,就是用于等待异步完成。async和await有一个严格规定,两者都离不开对方,且await只能写在async函数中。

sort排序是es6中的;sort排序是es6中用于对数组的元素进行排序的方法,该方法默认不传参,按照字符编码顺序进行排序,排序顺序可以是字母或数字,并按升序或降序,语法为“array.sort(callback(a,b))”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6
Visual web development tools
