码迷,mamicode.com
首页 > Windows程序 > 详细

React顶层API

时间:2019-09-20 16:54:48      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:col   window   reac   function   turn   遍历   div   dom   imp   

1.React.children.map(props.children, mapFunc)

1)该方法用于安全的遍历组件children。

2)该方法可以平铺嵌套数组的返回值。

import React from ‘react‘;
import ReactDOM from ‘react-dom‘;

function User(props) {
    // props.children取值有三种:
    // 1.无子节点-undefined
    // 2.一个文本/元素-字符串或者对象
    // 3.多个节点-数组
    // 所以使用map可能会有问题,但是React.Children.map解决了这个问题
    return (
        <>
            {
                React.Children.map(props.children, (item,index) => <div key={index}>{item}</div>)
            }
        </>
    )
}

ReactDOM.render(
    <User>
        1 
    </User>, window.root)

 

React顶层API

标签:col   window   reac   function   turn   遍历   div   dom   imp   

原文地址:https://www.cnblogs.com/lyraLee/p/11557798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!