<万博manbetx平台>react怎么遍历? - 万博manbetx平台中文网

react怎么遍历?

React中使用遍历

1、使用for(let item of items){}

render(){
    var itemList = []
    for(let item of items){
        itemList.push(<Item item={item}/>)
    }
    return(
        {itemList}
    )
}

2、使用map

render(){
    return(
        {items.map((item) =>{
            return(
                <Item item={item}/>
            )
        }
    )
}

以上就是react怎么遍历?的详细内容,更多请关注万博manbetx平台中文网其它相关文章!

赞(0) 打赏
未经允许不得转载:万博manbetx平台中文网首页 » React 答疑

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

前端开发相关广告投放 更专业 更精准

联系我们

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏