给所有的 async 函数添加 try / catch

2023-03-05  本文已影响0人  Cherry丶小丸子
第一种方式
// 当 `Promise` 被 reject 且没有 reject 处理器的时候,会触发 `unhandledrejection` 事件

window.addEventListener('unhandledrejection', function (event) {
    if(event.reason === 'failure') event.preventDefault();
})
第二种方式

https://juejin.cn/post/7155434131831128094

上一篇下一篇

猜你喜欢

热点阅读