兄弟们 try { await someApi(data); } catch (e) { console.error(e); throw e; } 与 await someApi(data).catch(e => { console.error(e); throw e; }); 有什么区别?
4