首页 > 代码库 > React.Children
React.Children
一直分不清React.Children与this.props.children是什么关系。其实很简单,this.props.children是子组件的集合,相当于把子组件当做组件的属性传入。
this.props.children有三种情况:
1.没有子组件时,数据类型为undefined
2.只有一个子组件时,数据类型为object
3.有多个子组件时,数据类型为数组
React.Children是React提供用来处理this.props.children的API,不用考虑this.props.children的数据类型,React.Children有map、forEach、count等方法
渲染组件:
ReactDOM.render(
<APP>
<div data=http://www.mamicode.com/{1}>
组件内:
export default class APP extends Component {
constructor(props){
super(props);
}
render(){
return (
<ul>
{React.Children.map(this.props.children,(child) =>{
return (
<li>序号:{child.props.data}</li>
)
})}
</ul>
)
}
}
React.Children
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。