Implementation of react loop data (list)

Implementation of react loop data (list)

First, let's simulate the data coming from the background. Here, in order to make the code clear, the data is simply simulated.

   import bg3 from './image/bg3.png'
   constructor(props){
      super(props)
      this.state = {
      ///Here list:[
            { id:1,img:bg3},
            { id:2,img:bg3},
            { id:3,img:bg3},
            { id:4,img:bg3},
            { id:5,img:bg3},
         ], 
     ///     
      }
   }

Then use the map method to loop out

  {
        this.state.list.map((item,key) => {
            return (
              <div className="winfor" onClick={() => console.log(item.id)}>
                 <img src={item.img} className="winforimg" />
                    
                 
              </div>
            )
          })
  }

Added: React loop list

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:'Little Fairy',age:'18'},{name:'Xiaoyu',age:'18'},{name:'Jiaxuan',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;

This is the end of this article about the implementation of react loop data. For more relevant react loop data content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • React Native avatar scrolling example
  • React example of digital scrolling effect without plugins
  • React implements infinite loop scrolling information

<<:  How to use commands in Mysql to achieve hierarchical search help detailed explanation

>>:  Detailed installation and configuration of hadoop2.7.2 under ubuntu15.10

Recommend

HTML simple shopping quantity applet

This article shares a simple HTML shopping quanti...

How to solve the problem that Seata cannot use MySQL 8 version

Possible reasons: The main reason why Seata does ...

Introduction to MySQL method of deleting table data with foreign key constraints

When deleting a table or a piece of data in MySQL...

A super detailed Vue-Router step-by-step tutorial

Table of contents 1. router-view 2. router-link 3...

Introduction and analysis of three Binlog formats in MySQL

one. Mysql Binlog format introduction Mysql binlo...

Docker dynamically exposes ports to containers

View the IP address of the Container docker inspe...

How to import txt into mysql in Linux

Preface When I was writing a small project yester...

The final solution to Chrome's minimum font size limit of 12px

I believe that many users who make websites will ...

Implementation of ssh non-secret communication in linux

What is ssh Administrators can log in remotely to...

jQuery plugin to implement minesweeper game (1)

This article shares the specific code of the firs...

How to hide the border/separation line between cells in a table

Only show the top border <table frame=above>...

Writing a web calculator using javascript

This article mainly records the effect of using j...

Node.js makes a simple crawler case tutorial

Preparation First, you need to download nodejs, w...

The pitfalls and solutions caused by the default value of sql_mode in MySQL 5.7

During normal project development, if the MySQL v...