码迷,mamicode.com
首页 > 其他好文 > 详细

React中循环渲染类似Vue中 的v-for

时间:2019-12-01 18:43:33      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:ret   span   component   v-for   state   循环   extend   from   his   

17==》循环数组 类似v-for

import React, { Component } from "react";

export default class CharShop  extends Component {
    // state初始化一般写在构造器当中
    constructor(props){
        super(props);
        this.state={
            goods: [
             { id: 1, text: "web111" },
             { id: 2, text: "web222" },
             { id: 3, text: "web333" }
            ]
        }
    }


     render(){
         return(
             <div>
                {/* 条年渲染  类v-for */}
                {this.state.goods.map(item=>
                  return  <li key={item.id}>{item.text}</li>
                )}
             </div>
         )
     }
}

 

React中循环渲染类似Vue中 的v-for

标签:ret   span   component   v-for   state   循环   extend   from   his   

原文地址:https://www.cnblogs.com/IwishIcould/p/11966816.html

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