react 学习--组件的生命周期(二)运行阶段

var HelloWorld = React.createClass({
         // 1.父组件修改属性触发,可以修改新属性,修改状态
         componentWillReceiveProps:function () {
            console.log("componentWillReceiveProps,1");
         },
         // 2.返回false会阻止render调用
         shouldComponentUpdate:function () {
             console.log("shouldComponentUpdate,2");
             return true;
         },
         // 3.不能修改属性和状态
         componentWillUpdate:function () {
           console.log("componentWillUpate,3");
         },
         // 4.渲染
         render:function () {
             console.log("render,4");
             return (
                     <p>
                         Hello,{this.props.name?this.props.name:' World'}
                         <span ref="tip"></span>
                     </p>
             );
         },
         // 5.完成后可以修改DOM
         componentDidUpdate:function() {
             console.log("componentDidUpdate,5");
             this.refs.tip.innerHTML += " appened! ";
         }
     });
     var Test = React.createClass({
         getInitialState:function () {
             return {
                 "name":""
             };
         },
         handleChange:function () {
            this.setState({
                "name":this.refs.myInput.value
            });
         },
         render:function () {
             return(
                     <div>
                         <HelloWorld name={this.state.name}/><br/>
                         <input ref="myInput" type="text" onChange={this.handleChange} />
                     </div>
             );
         }
     });
     ReactDOM.render(<Test />,document.getElementById("app"));


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值