JS异步操作async修饰符
作者:互联网
async 函数是使用async
关键字声明的函数。 async 函数是AsyncFunction
构造函数的实例, 并且其中允许使用await
关键字。async
和await
关键字让我们可以用一种更简洁的方式写出基于Promise
的异步行为,而无需刻意地链式调用promise
。
// 用async与await修饰后,r1则直接表示文件内容 // async方法中,第一个await之前的代码会同步执行,await之后的代码会异步执行 async function getAllFile(){ const r1=await thenFs.readFile('./file/1.txt','utf8')
console.log(r1); const r2=await thenFs.readFile('./file/2.txt','utf8') console.log(r2); } getAllFile();
标签:异步,await,r1,修饰符,thenFs,JS,关键字,async 来源: https://www.cnblogs.com/ZXSNB/p/16439585.html