深入了解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 (
            
App
Props:{this.props.data}

); } } 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 (
{ this.state.hasChild ? : null }

) } } ReactDOM.render(
{/**/}
, document.getElementById('app') );

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

你可能感兴趣的:(react)