美文网首页
给所有的 async 函数添加 try / catch

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

作者: Cherry丶小丸子 | 来源:发表于2023-03-05 16:24 被阅读0次
    第一种方式
    // 当 `Promise` 被 reject 且没有 reject 处理器的时候,会触发 `unhandledrejection` 事件
    
    window.addEventListener('unhandledrejection', function (event) {
        if(event.reason === 'failure') event.preventDefault();
    })
    
    第二种方式

    https://juejin.cn/post/7155434131831128094

    相关文章

      网友评论

          本文标题:给所有的 async 函数添加 try / catch

          本文链接:https://www.haomeiwen.com/subject/izvjldtx.html