2020-02-17 Promise例子

多重promise(串行)

let test = function() {
  return new Promise(function(resolve, reject){
    setTimeout(function(){
      resolve();
    }, 2000);
  })
}

test().then(function() {
  console.log('测试 resolve')
})

test().then(function(){
  return new Promise(function(resolve, reject){
    setTimeout(function(){
      resolve()
    }, 2000);
  })
}).then(function(){
  console.log('多重promise')
})
输出的结果
node .\promis-test.js
测试 resolve
多重promise

promise中的catch

// 可以抛出一个错误,然后用promise中的catch接住

// promise 中的 catch 用于捕获异常
let test = function(num) {
  return new Promise(function(resolve, rejcet){
    if (num > 5) {
      resolve();
    } else {
      // 抛出一个错误
      throw new Error;
    }
  })
}

test(3).then(function() {
  console.log('resolve 正常');
}).catch(function(error) {
  console.log('捕获异常', error);
})
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容