码迷,mamicode.com
首页 > 微信 > 详细

为Promise添加finally方法支持,把小程序函数变成promise函数

时间:2020-06-22 12:32:43      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:nal   rom   eject   reason   ons   options   sig   val   方法   


// 为Promise添加finally方法支持
Promise.prototype.finally = function (callback) {
  let P = this.constructor;
  return this.then(
    value => P.resolve(callback()).then(() => value),
    reason => P.resolve(callback()).then(() => {
      throw reason
    })
  );
};

// 把小程序函数变成promise函数
const promisify = (fn) => {
  return (options, ...params) => {
    return new Promise((resolve, reject) => {
      fn(Object.assign({}, options, {
        success: resolve,
        fail: reject
      }), ...params);
    });
  }
};

为Promise添加finally方法支持,把小程序函数变成promise函数

标签:nal   rom   eject   reason   ons   options   sig   val   方法   

原文地址:https://www.cnblogs.com/xinhang/p/13176034.html

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