let a = await (Promise.reject('msg')).catch(e => e) a === 'msg' // true
(但如果把await放到括号里面就catch不住了🙅♀️