首页 > 其他 > 详细

[React Fundamentals] Component Lifecycle - Mounting Basics

时间:2016-08-16 01:56:36      阅读:256      评论:0      收藏:0      [点我收藏+]

React components have a lifecycle, and you are able to access specific phases of that lifecycle. This lesson will introduce mounting and unmounting of your React components.

 

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

export default class App extends React.Component {
    constructor(){
        super();
        this.state = {
            val: 0
        }
    }
    update(){
        this.setState({
            val: this.state.val + 1
        })
    }
    componentWillMount(){
        console.log("Component Will Mount");
    }
    render() {
        console.log("rendering");
        return (
            <div>
                <button onClick={this.update.bind(this)}>{this.state.val}</button>
            </div>
        )
    }
    componentDidMount(){
        console.log("Component Did Mount");
    }
}

 

"componentWillMount" happen before rendering, "state" and "props" are ready, but DOM is not rendered yet.

"componentDidMount" happen after component rendered to the DOM, can access DOM Node.

 

技术分享

[React Fundamentals] Component Lifecycle - Mounting Basics

原文:http://www.cnblogs.com/Answer1215/p/5774888.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!