当前位置 : 主页 > 网页制作 > React >

reactjs – React儿童迭代

来源:互联网 收集:自由互联 发布时间:2021-06-15
对于迭代/映射反应的孩子,哪种方法更好/更安全,一般建议? this.props.children.map(c = spannew child/span); 要么 React.Children.map(c = spannew child/span); React.Children.map更好,因为它处理null和undefined案例
对于迭代/映射反应的孩子,哪种方法更好/更安全,一般建议?

this.props.children.map(c => <span>new child</span>);

要么

React.Children.map(c => <span>new child</span>);
React.Children.map更好,因为它处理null和undefined案例.

If children is null or undefined, returns null or undefined rather than an array.

网友评论