首页 > TAG信息列表 > thenFS

JS异步操作async修饰符

async 函数是使用async关键字声明的函数。 async 函数是AsyncFunction构造函数的实例, 并且其中允许使用await关键字。async和await关键字让我们可以用一种更简洁的方式写出基于Promise的异步行为,而无需刻意地链式调用promise。 import thenFs from "then-fs"; // 用async与await

JS Promise

//1. promise是一个构造函数: // 创建一个promise实例: // const p=new Promise();(代表一个异步操作) //2. Promise.prototype上包含一个.then()方法,因此每一次new Promise()构造函数得到的实例对象都可以通过原型链的方式访问到.then()方法: // 例如 p.then(); // 3. .then()方