时间:2021-05-26
React.Children是顶层API之一,为处理this.props.children这个封闭的数据结构提供了有用的工具。
this.props对象的属性与组件的属性一一对应,但是有一个例外,就是this.props.children属性。它表示组件的所有子节点。
在每一个直接子级(包含在 children 参数中的)上调用 fn 函数,此函数中的 this 指向 上下文。如果 children 是一个内嵌的对象或者数组,它将被遍历:不会传入容器对象到 fn 中。如果 children 参数是 null 或者 undefined,那么返回 null 或者 undefined 而不是一个空对象。
<script type="text/jsx"> var NotesList = React.createClass({ render: function() { return ( <ol> { React.Children.map(this.props.children, function (child) { return <li>{child}</li>; }) } </ol> ); } }); React.render( <NotesList> <span>hello</span> <span>hello</span> </NotesList>, document.body );</script>这里需要注意,this.props.children的值有三种可能:如果当前组件没有子节点,它就是undefined;如果有一个子节点,数据类型是object;如果有多个子节点,数据类型就是array。所以,处理this.props.children的时候要小心。
React提供一个工具方法React.Children来处理this.props.children。我们可以用React.Children.map来遍历子节点,而不用担心this.props.children的数据类型是undefined还是object。
传入如下ReactElement:
<NotesList> <span>hello</span> <span>hello</span></NotesList>//返回两个子节点 <NotesList></NotesList>//返回undefined <NotesList>null</NotesList>//返回nullReact.Children.forEach(object children, function fn [, object context])
类似于 React.Children.map(),但是不返回对象。
number React.Children.count(object children)
返回 children 当中的组件总数,和传递给 map 或者 forEach 的回调函数的调用次数一致。
render: function() { console.log(React.Children.count(this.props.children)); //2 return ( <ol> { this.props.children.forEach(function (child) { return <li>{child}</li> }) } </ol> ); }不同的ReactElement,输出count值:
<NotesList> <span>hello</span> <span>hello</span></NotesList>console.log(React.Children.count(this.props.children)); //2 <NotesList></NotesList>console.log(React.Children.count(this.props.children)); //0 <NotesList>null</NotesList>console.log(React.Children.count(this.props.children)); //1object React.Children.only(object children)
返回children中仅有的子级。否则抛出异常。
这里仅有的子级,only方法接受的参数只能是一个对象,不能是多个对象(数组)。
console.log(React.Children.only(this.props.children[0])); //输出对象this.props.children[0]以上就是React.Children的用法详解的详细内容,更多关于React.Children的用法的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Flutter是借鉴React的开发思想实现的,在子组件的插槽上,React有this.props.children,Vue有。当然Flutter也有类似的Wi
本文实例总结了jQuery中常用的遍历函数用法。分享给大家供大家参考。具体如下:1.children()函数children()函数用于选取每个匹配元素的子元素
详解React16中的异常处理异常处理在React15.x及之前的版本中,组件内的异常有可能会影响到React的内部状态,进而导致下一轮渲染时出现未知错误。这些
本文介绍了React全家桶环境搭建过程详解,分享给大家,具体如下:环境搭建1.从零开始搭建webpack+react开发环境2.引入Typescript安装依赖
函数意义详解从当前主题调用header.php文件。是不是很简单?好吧,如果你是新手的话这里要提醒一下,这里的get和get_children()、get_ca