深入了解React(十四、生命周期4-销毁组件)

import React from 'react';
import ReactDOM from 'react-dom';

import 'font-awesome/css/font-awesome.min.css';
import './index.css';
import './index.scss';

class Component extends React.Component {
    // 构造函数
    constructor(props) {
        super(props);
        this.state = {
            data: 'Old State'
        };

        alert('constructor');
        console.log('初始化数据---------constructor---------');
    }

    // 组件将要加载
    componentWillMount() {
        alert('componentWillMount');
        console.log('componentWillMount');
    }

    // 组件加载完成
    componentDidMount() {
        alert('componentDidMount');
        console.log('componentDidMount');
    }

    // 将要接收父组件穿来的props
    componentWillReceiveProps() {
        alert('componentWillReceiveProps');
        console.log('componentWillReceiveProps');
    }

    // 子组件是不是应该更新
    shouldComponentUpdate() {
        alert('shouldComponentUpdate');
        console.log('shouldComponentUpdate');
        // true表示要更新,false表示不要更新
        return true;
        // return false;
    }

    // 组件将要更新
    componentWillUpdate() {
        alert('componentWillUpdate');
        console.log('componentWillUpdate');
    }

    // 组件更新完成
    componentDidUpdate() {
        alert('componentDidUpdate');
        console.log('componentDidUpdate');
    }

    // 组件即将销毁
    componentWillUnmount() {
        alert('componentWillUnmount');
        console.log('componentWillUnmount');
    }

    // 处理点击事件
    handleClick() {
        console.log('更新数据---------handleClick---------');
        this.setState({
            data: 'New State'
        });
    }

    // 渲染
    render() {
        alert('render');
        console.log('render');
        return (
            <div>
                <div>App</div>
                <div>Props:{this.props.data}</div>
                <p>
                    <button onClick={() => {
                        this.handleClick()
                    }}>更新组件
                    </button>
                </p>
            </div>
        );
    }
}

class App extends React.Component {
    // 构造函数
    constructor(props) {
        super(props);
        this.state = {
            data: 'Old Props',
            hasChild: true
        };
        alert('App初始化---------constructor---------');
        console.log('App初始化---------constructor---------');
    }

    // 更新props属性
    onPropsChange() {
        alert('更新props属性');
        console.log('更新props属性');
        this.setState({
            data: 'New Props'
        });
    }

    //销毁子组件
    onDestoryChild() {
        alert('销毁子组件');
        console.log('销毁子组件');
        this.setState({
            hasChild: false
        });
    }

    // 渲染
    render() {
        return (
            <div>
                {   this.state.hasChild
                        ? <Component data={this.state.data}/>
                        : null
                }
                <p>
                    <button onClick={() => {
                        this.onPropsChange()
                    }}>改变Props
                    </button>
                </p>
                <p>
                    <button onClick={() => {
                        this.onDestoryChild()
                    }}>销毁子组件
                    </button>
                </p>
            </div>
        )
    }
}

ReactDOM.render(
    <div>
        {/*<Component></Component>*/}
        <App></App>
    </div>,
    document.getElementById('app')
);

点击“销毁子组件”按钮后:
1、销毁子组件
2、componentWillUnmount

发布了123 篇原创文章 · 获赞 4 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/yuzhiboyouzhu/article/details/80015445
今日推荐