React中如何优雅的捕捉事件错误

 我来答
东坡下载站
2019-01-13 · 最新优质手游软件资源下载
东坡下载站
东坡下载是一个专业的无毒的免费的软件资源网站
向TA提问
展开全部

1. EerrorBoundary

EerrorBoundary是16版本出来的,有人问那我的15版本呢,我不听我不听,反正我用16,当然15有unstable_handleError。 
关于EerrorBoundary官网介绍比较详细,这个不是重点,重点是他能捕捉哪些异常。

Error boundaries在rendering,lifeCyclemethod或处于他们树层级之下的构造函数中捕获错误 
哦,原来如此。 怎么用

class ErrorBoundary extends React.Component {  constructor(props) {    super(props);    this.state = { hasError: false };
  }

  componentDidCatch(error, info) {    // Display fallback UI
    this.setState({ hasError: true });    // You can also log the error to an error reporting service
    logErrorToMyService(error, info);
  }

  render() {    if (this.state.hasError) {      // You can render any custom fallback UI
      return <h1>Something went wrong.</h1>;
    }    return this.props.children;
  }
}


<ErrorBoundary>  <MyWidget /></ErrorBoundary>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式