// Promise的状态需要 完成时 才会加入微队列 Promise.resolve() .then(() => { Promise.resolve() .then(() => console.log(1)) .then(() => console.log(3)) }) .then(() => { console.log(2) })