react js模拟动画疑问
高洛峰
高洛峰 2016-11-15 16:43:02
0
1
714

var AnimationExample=React.createClass({

            getInitialState:function(){
                return {
                    position:0
                }
            },
            animationFun:function(){
                if(this.state.position<this.props.position){
                    this.setState({
                        position:this.state.position+1
                    })
                }
            },
            componentDidUpdate:function(){
                if(this.props.position){
                    setTimeout(this.animationFun,this.props.timeoutMs)
                }
            },
            render:function(){
                var divStl={
                    marginLeft:this.state.position
                };
                return (
                    <div style={divStl}>This is animate!</div>
                )
            }
            
        });
        

        ReactDOM.render(
            <AnimationExample />,
            document.getElementById('animationContent')
        );
        ReactDOM.render(
            <AnimationExample position={100} timeoutMs={10}/>,document.getElementById('animationContent')
        );

这是一个简单的js模拟动画,我的疑问是为什么最后要render两次,而render一次不行呢

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

全部回复(1)
三叔

因为列出的component会根据position属性的变化而更新,第一次render时compoent没有props.position,第二次render后props.position的值为100。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板