React表达式利用array.map()生成多个组件

React 表达式 map循环 数组 报错如下
/src/pureComponent/index.js
Line 24:20: Expected an assignment or function call and instead saw an expression no-unused-expressions

问题:

React 表达式 map循环 数组 生成组件的时候报错

render(){
        return (
            <div>
                {this.state.comment.map((item,i)=>{
                   <Comment key={i} data={item}/>
                })}
            </div>
        )
    }


<hr style=" border:solid; width:100px; height:1px;" color=#000000 size=1">





# 解决方法:

要return component
 render(){
        return (
            <div>
                {this.state.comment.map((item,i)=>{
                   return <Comment key={i} data={item}/>
                })}
            </div>
        )
    }



你可能感兴趣的:(reactjs)