js中对于返回Promise对象的语句如何try catch前言一、何为Promise?二、代码演示try catch三、图解 try catch四、立即执行函数五、异常不catch,代码不会继续往下执行六、参考文档
文章目录前言一、何为Promise?二、代码演示try catch1. 无 async 修饰符,无 new Promise2. 有 async 修饰符,无 new Promise3. 无 async 修饰符,有 new Promise,Promise里面无 async4. 无 async 修饰符,有 new Promise,Promise里面有 async5. 有 async 修饰符,有 new Promise,Promise里面无 async6. 有 async 修饰符,有 new Promi