React 相关

React

循环生成列表

1
2
3
4
5
6
7
8
9
10
11
12

render(){
return(
<ul>
this.state.listData.map((d)=>{
return(
<li>{d}<li>
)
})
</ul>
)
}

Read More...