Lucifier129 / react-imvc

An Isomorphic MVC Framework supports both SSR and CSR

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

2.5.0版本新增的错误处理,无法处理异步的生命周期

circlle opened this issue · comments

  • 类型: 改进
  • 问题描述: 新增的错误处理,当声明周期为异步时,无法触发错误处理。以下代码会造成crash
 // controller.js
 async componentDidFirstMount() {
  throw new Error('')
 }
  • 期望:支持异步生命周期的错误处理