Promise的catch()和then(...,err)的优先级


对于 Promise如果你看过ES6的教程,应该就已经有所了解了。在 Promise的回调中 then(...,err)catch()都是用来处理返回的错误的,那么这俩在实际应用上的执行顺序是怎样的呢,我个人做了点小测试。有兴趣的大家可以继续阅读本章,也可以提出你的想法。我会多做补充的。

创建Promise的测试函数

Promise封装到一个test函数中,通过传值控制Promise返回的状态。

function test(arg) {
  const p = new Promise((resolve, reject) => {
    if (arg) {
      resolve(`result is ${arg}`);
    } else if (arg === 0) {
      throw new Error("result is 0");
    } else {
      reject("result is null");
    }
  });
  return p;
}

then中没有err时

then中没有创建失败时的回调。

// reject返回失败
test()
  .then((result) => {
    console.log(`success: ${result}`);
  })
  .catch((err) => {
    console.error(`catch: ${err}`);
  });
// 通过抛出异常返回失败
test(0)
  .then((result) => {
    console.log(`success: ${result}`);
  })
  .catch((err) => {
    console.error(`catch: ${err}`);
  });

输出的结果为:

catch: result is null
catch: Error: result is 0

由此可见,在then没有对失败进行处理的情况下,由catch处理所有失败的回调。

then中有err时

then中创建了失败的回调。

then在catch之前

// reject返回失败
test()
  .then(
    (result) => {
      console.log(`success: ${result}`);
    },
    (err) => {
      console.log(`err: ${err}`);
    }
  )
  .catch((err) => {
    console.error(`catch: ${err}`);
  });
// 通过异常或主动抛出异常返回失败
test(0)
  .then(
    (result) => {
      console.log(`success: ${result}`);
    },
    (err) => {
      console.log(`err: ${err}`);
    }
  )
  .catch((err) => {
    console.error(`catch: ${err}`);
  });

输出的结果为:

err: result is null
err: Error: result is 0

由此可见,在then有对失败进行处理的情况下,且thencatch之前时,由then捕获所有失败的回调。

then在catch之后

// reject返回失败
test()
  .catch((err) => {
    console.error(`catch: ${err}`);
  })
  .then(
    (result) => {
      console.log(`success: ${result}`);
    },
    (err) => {
      console.log(`err: ${err}`);
    }
  );
// 通过异常或主动抛出异常返回失败
test(0)
  .catch((err) => {
    console.error(`catch: ${err}`);
  })
  .then(
    (result) => {
      console.log(`success: ${result}`);
    },
    (err) => {
      console.log(`err: ${err}`);
    }
  );

输出的结果为:

catch: result is null
catch: Error: result is 0
success: undefined
success: undefined

由此可见,在then有对失败进行处理的情况下,且thencatch之后时,由catch处理所有失败的回调。

catch处理之后依然会触发Promisethen的成功的回调方法。

什么时候只有catch可以奏效呢?

:只有当Promisethen中的回调方法有错误的时候。

catch在then之后

// reject返回失败
test()
  .then(
    (result) => {
      console.log(successArg);
      console.log(`success: ${result}`);
    },
    (err) => {
      console.log(failArg);
      console.log(`err: ${err}`);
    }
  )
  .catch((err) => {
    console.error(`catch: ${err}`);
  });
// resolve返回成功
test(1)
  .then(
    (result) => {
      console.log(successArg);
      console.log(`success: ${result}`);
    },
    (err) => {
      console.log(failArg);
      console.log(`err: ${err}`);
    }
  )
  .catch((err) => {
    console.error(`catch: ${err}`);
  });

输出的结果为:

catch: ReferenceError: failArg is not defined
catch: ReferenceError: successArg is not defined

由上可知,谁运行了谁报错,而回调方法的错误,由catch进行处理。

catch在then之前

如果catchthen前面呢?

// reject返回失败
test()
  .catch((err) => {
    console.error(`catch: ${err}`);
  })
  .then(
    (result) => {
      console.log(successArg);
      console.log(`success: ${result}`);
    },
    (err) => {
      console.log(failArg);
      console.log(`err: ${err}`);
    }
  );
// resolve返回成功
test(1)
  .catch((err) => {
    console.error(`catch: ${err}`);
  })
  .then(
    (result) => {
      console.log(successArg);
      console.log(`success: ${result}`);
    },
    (err) => {
      console.log(failArg);
      console.log(`err: ${err}`);
    }
  );

输出结果为:

catch: result is null
(node:8149) UnhandledPromiseRejectionWarning: ReferenceError: successArg is not defined

由上可知,如果catchthen之前,then的回调错误依然是由catch进行处理,但是由于then中的成功的回调方法依然会被执行,所以程序会由于错误被中断。

总结

总结

感谢阅读,如有讨论欢迎留言。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值