Promise 构造函数是同步执行还是异步执行,那么 then 方法呢? 发表于 2020-08-26 更新于 2024-11-07 分类于 开发技术 阅读次数: Promise 构造函数是同步执行还是异步执行,那么 then 方法呢?个人题解 构造函数是同步执行,then的时候是异步 12345678910111213const demo = function () { return new Promise((reslove, reject) => { console.log(1); reslove(2); console.log(3); });};demo().then((res) => { console.log(res);});//1 3 2 相关链接 第 13 题:Promise 构造函数是同步执行还是异步执行,那么 then 方法呢? #19