promise的catch放在then前面的场景
我们知道Promise 的 .then() 和 .catch() 方法的链式调用顺序通常是先 .then() 后 .catch()。这是因为 .then() 方法用于处理成功的情况,而 .catch() 方法用于处理失败的情况。.catch() 方法会捕获前面所有 .then() 链中抛出的异常,以及在 Promise 执行过程中发生的任何错误。
在一个失败重试场景中我把catch放在then前面,代码逻辑会很简单:
...
const pause = (duration) => new Promise((reslove) => setTimeout(reslove, duration));
...
dosomething().catch(e=>{console.log("frist fail");pause(delay).then(()=>{console.log("second try"); dosomething().then(()=>{console.log("retry succ");}).catch(e=>{console.log("retry fail");})}).then(()=>{dootherting();}).catch(e=>{console.log("fail");})