美文网首页
this.props.children传值到子组件

this.props.children传值到子组件

作者: Ysj1111 | 来源:发表于2017-09-11 10:31 被阅读151次

    在父组件里面:

    {this.props.children && React.cloneElement(this.props.children, {
                  handleClick: this.handleClick,
                })}
    

    在子组件里面可以获取到:

    handleClick = (props)=>{
        this.props.handleClick(1,0);
      }
    

    参考链接

    相关文章

      网友评论

          本文标题:this.props.children传值到子组件

          本文链接:https://www.haomeiwen.com/subject/nvbxsxtx.html