zoukankan      html  css  js  c++  java
  • [React Fundamentals] Component Lifecycle

    The React component lifecycle will allow you to update your components at runtime. This lesson will explore how to do that.

    import React from 'react';
    import ReactDOM from 'react-dom';
    
    export default class App extends React.Component {
        constructor(){
            super();
            this.state = {
                increasing: false
            }
        }
        update(){
            ReactDOM.render(<App val={this.props.val+1} /> , document.getElementById('app'));
        }
        componentWillReceiveProps(nextProps){
            //Invoked when a component is receiving new props. This method is not called for the initial render.
            this.setState({
                increasing: nextProps.val > this.props.val
            })
        }
        shouldComponentUpdate(nextProps, nextState){
            // Control whether the component should re-render
            return nextProps.val % 5 === 0; // update dom every 5 clicks
        }
        render() {
            console.log(this.state.increasing);
            return (
                <div>
                    <button onClick={this.update.bind(this)}>{this.props.val}</button>
                </div>
            )
        }
        componentDidUpdate(prevProps, prevState){
            //After DOM update
            console.log("prevProps", prevProps);
        }
    }
    
    App.defaultProps = {
        val: 0
    }
     
  • 相关阅读:
    记一道有趣的数学题
    BJOI2018 二进制
    BJOI2016 IP地址
    BJOI2016 回转寿司
    BJOI2017 开车
    BJOI2019 光线
    java 下载
    springboot 运行相关命令
    sql mapper 里面 Integer 类型判断
    springboot 访问jar同级别下的文件访问问题
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5774920.html
Copyright © 2011-2022 走看看