promise 学习

1、https://sunxiunan.com/

Promise.resolve(1)
    .then(v => Promise.resolve(v + 1))
    .then(v => Promise.resolve(v + 3))
    .then(v => console.log(`First: ${v}`));
Promise.resolve(1)
    .then(v => v + 1)
    .then(v => Promise.resolve(v + 5))
    .then(v => console.log(`Second: ${v}`));
Promise.resolve(1)
    .then(v => v + 1)
    .then(v => v + 7)
    .then(v => console.log(`Third: ${v}`));

  

 

 

 

2、

function asyncFunc() {
  return Promise.resolve(123);
}

function myFunc() {
  return asyncFunc().then(() => Promise.reject(456));
  //.then((res) => 'success: ' + res)
  // .catch((reason) => 'error: ' + reason)
  // .finally(() => console.log('im finally 123'));
}

async function myFunc2() {
  try {
    let data = await myFunc();
    console.log('data is --->', data);
  } catch (e) {
    console.log('data error is --->', e);
  }
}

myFunc2();

 

 

 

3、遇到如下函数不知道如何调用:

 

 经大佬指点如下:

 

posted @ 2021-10-26 18:17  hjswlqd  阅读(14)  评论(0编辑  收藏  举报