为什么this.props.children返回此组件?

时间:2016-10-31 16:17:22

标签: reactjs

这是正确的用法吗? “this.props.children.props.children”?

{ React.cloneElement(this.props.children.props.children, this.props) }

this.props.children显示了这个组件:O。我忘记了什么?

ESLint期望道具验证中缺少'孩子',但我有

myClass.protoType =  {
  children: React.PropTypes.element.isRequired
};

1 个答案:

答案 0 :(得分:0)

我使用它并且对我来说很好用:

React.cloneElement(this.props.children,this.props);