ReactJS componentWillUnmount() 方法
componentWillUnmount() 方法允许我们在组件被销毁或从 DOM(文档对象模型)中卸载时执行 React 代码。这个方法在 React 生命周期的卸载阶段被调用,即在组件被卸载之前。
所有清理工作,例如使计时器无效、取消网络请求或清理在 componentDidMount() 中创建的任何订阅,都应该在 componentWillUnmount() 方法块中进行编码。
提示:切勿在 componentWillUnmount() 方法中调用 setState()。
句法:
componentWillUnmount()
创建反应应用程序:
第 1 步:使用以下命令创建一个 React 应用程序:
npx create-react-app functiondemo
第 2 步:创建项目文件夹(即 functiondemo)后,使用以下命令移动到该文件夹:
cd functiondemo
项目结构:它将如下所示。
示例:在此示例中,我们将构建一个名称颜色应用程序,当组件在 DOM 树中呈现时,它会更改文本的颜色。
App.js:现在在 App.js 文件中写下以下代码。在这里,App 是我们编写代码的默认组件。
Javascript
import React from 'react';
class ComponentOne extends React.Component {
// Defining the componentWillUnmount method
componentWillUnmount() {
alert('The component is going to be unmounted');
}
render() {
return Hello Geeks!
;
}
}
class App extends React.Component {
state = { display: true };
delete = () => {
this.setState({ display: false });
};
render() {
let comp;
if (this.state.display) {
comp = ;
}
return (
{comp}
);
}
}
export default App;
注意:您可以在 App.css文件。
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
npm start
输出:
参考: https://reactjs.org/docs/react-component.html#componentwillunmount