Promise.then链式调用
Posted eret9616
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Promise.then链式调用相关的知识,希望对你有一定的参考价值。
let a = new Promise((resolve,reject)=>{ resolve(1) }).then((r)=>{console.log(r)}).then(()=>{console.log(2)}).then(()=>{consol.log(3)})
// 1
// 2
// 3
let b = new Promise((resolve,reject)=>{resolve(1)}).then((r)=>{ return 3}).then((r)=>{console.log(r)})
// 3
在.then的一系列链式调用中,
每个.then都会生成一个新的promise
通过 return 来让后面的promise接收到onFullfill的值
以上是关于Promise.then链式调用的主要内容,如果未能解决你的问题,请参考以下文章