React for循环渲染组件

通常你需要在一个组件中渲染列表。或者循环遍历渲染相同的多个组件,下面看看怎么实现:

 render() {
    const options = this.state.data.map(d => );
    return (
      
    );
  }

有 If 判断的字组件循环渲染:

    
  render() {
    // 聊天列表组件
    function MsgList(props){
      const list = props.list;
        const listItems = list.map((item,idx) =>{
            if(item.mess

你可能感兴趣的:(Web前端,react,Ant,Design,Pro,教程专栏,React,for,Ant,Design,循环渲染组件,React循环组件,ant,循环渲染子组件)