这是正确的用法吗? “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
};
答案 0 :(得分:0)
我使用它并且对我来说很好用:
React.cloneElement(this.props.children,this.props);