当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ReactJS getDerivedStateFromError()用法及代码示例


如果在任何生命周期方法或任何子组件的呈现阶段发生一些错误,则调用getDerivedStateFromError()方法。此方法用于为React应用程序实现错误边界。在渲染阶段调用它,因此该方法不允许使用side-effects。对于side-effects,请改用componentDidCatch()。

用法:

static getDerivedStateFromError(error)

参数:它接受作为参数抛出的错误。

创建React应用程序:

步骤1:使用以下命令创建React应用程序:



npx create-react-app foldername

步骤2:建立专案资料夹(​​即资料夹名称)之后,使用以下指令移至该资料夹:

cd foldername

示例:程序演示如何使用getDerivedStateFromError()方法。

项目结构:它将如下所示。

文件名:App.js

Javascript

import React, { Component } from 'react'; 
  
export default class App extends Component { 
  
  // Intializing the state 
  state = { 
    error:false
  }; 
  
  static getDerivedStateFromError(error) { 
    // Changing the state to true if some error occurs 
    return { 
      error:true, 
    }; 
  } 
  
  render() { 
    return ( 
      <React.StrictMode> 
        <div> 
          {this.state.error ? <div>Some error</div>:<GFGComponent />} 
        </div> 
      </React.StrictMode> 
    ); 
  } 
} 
  
class GFGComponent extends Component { 
  
  // GFGComponent throws error as state of GFGCompnonent is not defined 
  render() { 
    return <h1>{this.state.heading}</h1>; 
  } 
}

运行应用程序的步骤:从项目的根目录中使用以下命令运行应用程序:

npm start

输出:

参考:https://reactjs.org/docs/react-component.html#static-getderivedstatefromerror

react-js-img

相关用法


注:本文由纯净天空筛选整理自rbbansal大神的英文原创作品 ReactJS getDerivedStateFromError() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。