服务器之家

服务器之家 > 正文

react循环数据(列表)的实现

时间:2022-02-28 16:40     来源/作者:范范t

首先我们模拟一下后台传过来的数据,这里为了让代码清晰,数据就简单的模拟了一下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import bg3 from './image/bg3.png'
constructor(props){
   super(props)
   this.state = {
   ///这里
      list:[
         { id:1,img:bg3},
         { id:2,img:bg3},
         { id:3,img:bg3},
         { id:4,img:bg3},
         { id:5,img:bg3},
      ],
  ///    
   }
}

然后在使用map方法循环出来

?
1
2
3
4
5
6
7
8
9
10
11
{
      this.state.list.map((item,key) => {
          return (
            <div className="winfor" onClick={() => console.log(item.id)}>
               <img src={item.img} className="winforimg" />
                  
               
            </div>
          )
        })
}

补充:React 循环列表

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React, {Component} from 'react';
import logo from './logo.svg';
import './App.css';
import {Person,Twoway} from './Person/Person'
 
class  App extends Component{
  state={
    persons:[{name:'小仙女',age:'18'},{name:'小玉',age:'18'},{name:'家璇',age:'18'}],
 
  }
 
  render(){
    const listItems = this.state.persons.map((item,index) =>
       <Person name={item.name} age={item.age} key={index} />
     );
      return(
        <div className="App">
             {listItems}
        </div>
      )     
  }
}
export default App;

到此这篇关于react循环数据的实现的文章就介绍到这了,更多相关react循环数据内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/weixin_42821697/article/details/111172982

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部