其他分享
首页 > 其他分享> > 谈谈你对Promise的理解

谈谈你对Promise的理解

作者:互联网

一、Promise是什么?

二、Promise 构造函数的基本用法

const p = new Promise((resolve, reject) => {
       if (...) {   // succeed
             resolve(result);        
       } else {     // fails
             reject(Error(errMessage));
       }
});

p.then(value => {
  console.log(value.toString())
},reason => {
  console.log(reason)
})

三、为什么要用Promise?

标签:异步,reason,value,谈谈,理解,promise,Promise,回调
来源: https://www.cnblogs.com/songyajie32C/p/16607699.html