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

promise链式调用

时间:2019-12-30 11:10:13      阅读:40      评论:0      收藏:0      [点我收藏+]

标签:log   console   resolve   ret   链式   params   return   ons   ams   

that.test1().then(res => {
    return that.test2(res);
}).then(res => { console.log(res); }) test1(){ var that = this; var p = new Promise((resolve,reject) => { resolve(‘hello ‘); }) return p; }, test2(params){ var that = this; var p = new Promise((resolve, reject) => { resolve(`${params}world!`); }) return p; },


promise链式调用

标签:log   console   resolve   ret   链式   params   return   ons   ams   

原文地址:https://www.cnblogs.com/pycmsj/p/12118528.html

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