发表于 2025-08-14 本文字数: 阅读时长 ≈ NaN:aN // Promise的状态需要 完成时 才会加入微队列 Promise.resolve() .then(() => { Promise.resolve() .then(() => console.log(1)) .then(() => console.log(3)) }) .then(() => { console.log(2) })