js中可选的回调函数

图片[1]-js中可选的回调函数-uusu优素-乐高,模型,3d打印,编程

1、then的回调函数不是严格要求必写的。如果不写,promise也会用上一个返回的最终值来传递。

doSomething().then().then(function(result){
console.log('gotaresult',result);
});

//输出结果是:
//
//gotaresult42

2、如果当前的then没有传输回调函数,该函数将直接使用前一个promise返回的最终值来解决下一个promise。

if(!handler.onResolved){
handler.resolve(value);
return;
}
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞15 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容