async和await

async/await是ES8引入的新特性,用于简化Promise异步操作。它避免了.then链式调用的冗余,提高了代码可读性。在async函数中,await关键字用于等待Promise解析,使得代码更接近同步风格。示例展示了如何使用async/await读取多个文件内容并按顺序打印。
摘要由CSDN通过智能技术生成

什么是 async/await

async/awaitES8(ECMAScript 2017)引入的新语法,用来简化Promise 异步操作。在async/await出现之前,开发者只能通过链式.then()的方式处理Promise 异步操作。
.then链式调用的
优点
:解决了回调地狱的问题
.then链式调用的缺点:代码冗余、阅读性差、不易理解
使用async/ await简化Promise异步操作的示例代码如下:

import thenFs from 'then-fs'

console.log('A')
async function getAllFile() {
  console.log('B')
  const r1 = await thenFs.readFile('./files/1.txt', 'utf8')
  // console.log(r1)
  const r2 = await thenFs.readFile('./files/2.txt', 'utf8')
  // console.log(r2)
  const r3 = await thenFs.readFile('./files/3.txt', 'utf8')
  console.log(r1,r2,r3)
  console.log('D')
}

getAllFile()
console.log('C')

async/await的使用注意事项

如果在function中使用了await,则 function必须被async修饰
在async方法中,第一个await之前的代码会同步执行,await之后的代码会异步执行

所以上面的代码输出结果是:
A
B
C
r1,r2,r3里面的内容
D

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值