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

promise链式调用

时间:2018-04-05 20:03:34      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:res   ISE   log   mis   on()   turn   pre   timeout   func   

//不了解promise可以先去看看,了解后再来相信大家读能看的懂
function Promise1(resolve, reject) {
setTimeout(function() {
resolve(‘1‘);
},5000);
}

function Promise2(resolve, reject) {
setTimeout(function() {
resolve(‘2‘);
},5000);
}

function Promise3(resolve) {
setTimeout(function() {
resolve(‘3‘);
},5000);
}
new Promise(Promise1).then(function(val){
console.log(val);
return new Promise(Promise2);
}).then(function(val){
console.log(val);
return new Promise(Promise3);
}).then(function(val){
console.log(val);
});

promise链式调用

标签:res   ISE   log   mis   on()   turn   pre   timeout   func   

原文地址:https://www.cnblogs.com/zou1234/p/8723955.html

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