返回介绍

在 React v16 中的错误边界是什么?

发布于 2024-08-09 20:39:58 字数 970 浏览 0 评论 0 收藏 0

错误边界是在其子组件树中的任何位置捕获 JavaScript 错误、记录这些错误并显示回退 UI 而不是崩溃的组件树的组件。

如果一个类组件定义了一个名为 componentDidCatch(error, info)static getDerivedStateFromError() 新的生命周期方法,则该类组件将成为错误边界:

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

componentDidCatch(error, info) {
  // You can also log the error to an error reporting service
  logErrorToMyService(error, info)
}

static getDerivedStateFromError(error) {
    // Update state so the next render will show the fallback UI.
    return { hasError: true };
  }

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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文