码迷,mamicode.com
首页 > 其他好文 > 详细

Promise.then链式调用

时间:2019-10-26 19:23:48      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:链式   OLE   eject   ret   通过   fill   The   ons   console   

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链式调用

标签:链式   OLE   eject   ret   通过   fill   The   ons   console   

原文地址:https://www.cnblogs.com/eret9616/p/11744067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!