promise的链式调用也很烦
Promise.resolve()
.then(() => {
console.log("then1");
Promise.resolve()
.then(() => {
console.log("then1-1");
return Promise.resolve();
})
.then(() => {
console.log("then1-2");
});
})
.then(() => {
console.log("then2");
})
.then(() => {
console.log("then3");
})
.then(() => {
console.log("then4");
});
【 在 missmary 的大作中提到: 】
: 如果是写 Js 的, Promise 的那些 .then , .catch 用的熟了,后面再学 async/await 这些,这样可能更容易理解协程的概念吧。
--
FROM 64.207.220.*