retry = async function (fn, times) { while (times > 0) { try { const res = await fn() console.log(res) return } catch(e) { console.log('try ...
確定! 回上一頁