相关文章推荐
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>
)
}
}

遇见问题,这是你成长的机会,如果你能够解决,这就是收获。


作者:晚来南风晚相识

如果文中有什么错误,欢迎指出。以免更多的人被误导。



 
推荐文章