【问题标题】:How do I iterate through table rows and cells in Reactjs如何遍历 Reactjs 中的表格行和单元格
【发布时间】:2025-11-28 14:40:01
【问题描述】:

我对 Reactjs 很陌生,我有一个组件可以从我的数据库中加载 json,看起来像这样

Array[2]
0: Object
_id: "56cf587fe46adb3b8960afe2"
price: 2000
title: "ps3"
url: "www.google.com"
__proto__: Object
1: Object
_id: "56db2bd434df9046e0643d22"
price: 499
title: "HENRIKSDAL"
url: "http://www.ikea.com/se/sv/catalog/products/S59847817/"
__proto__: Object
length: 2
__proto__: Array[0]

我想要做的是将数据加载到看起来像这样的表中

//start of loop
<tr>
                          <td className="col-sm-8 col-md-6">
                          <div className="media">

                              <div className="media-body">
                                  <h4 className="media-heading"><a href="#">Product name</a></h4>
                              </div>
                          </div></td>
                          <td className="col-sm-1 col-md-1" styles="text-align: center">
                          <input type="number" name="quantity" min="1" max="10" className="form-control"/>
                          </td>
                          <td className="col-sm-1 col-md-1 text-center"><strong>500:-</strong></td>
                          <td className="col-sm-1 col-md-1 text-center"><strong>$14.61</strong></td>
                          <td className="actions" data-th="">
              <button className="btn btn-info btn-sm"><i className="fa fa-refresh"></i></button>
              <button className="btn btn-danger btn-sm"><i className="fa fa-trash-o"></i></button>
                         </td>
                      </tr>
                      <tr>
                          <td>   </td>
                          <td>   </td>
                          <td>   </td>
                          <td><h3>Total</h3></td>
                          <td className="text-right"><h3><strong>$31.53</strong></h3></td>
                      </tr>
    //end of loop

但我不知道如何遍历数组,所以它会为数组中的每个对象创建一个表行。有什么建议?

【问题讨论】:

    标签: arrays mongodb reactjs


    【解决方案1】:

    您可以映射数组并将数据传递给 html

            {this.state.data.map(( listValue, index ) => {
              return (
                <tr key={index}>
                  <td>{listValue.id}</td>
                  <td>{listValue.title}</td>
                  <td>{listValue.price}</td>
                </tr>
              );
            })}
    

    【讨论】:

    • 但是如果我想传递一个像 onclick 事件这样的函数呢?
    • 使用onClick属性调用方法
    • 你解决了一个神秘人!!真的,过去两天我一直在寻找一个简单的选择,然后繁荣!我碰到了你的答案
    【解决方案2】:

    您可以使用map方法(在Array的原型中可用)。
    迭代可以这么简单...

    const rows = [
      {
        _id: "56cf587fe46adb3b8960afe2",
        price: 2000,
        title: "ps3",
        url: "www.google.com",
      }, {
        _id: "56db2bd434df9046e0643d22",
        price: 499,
        title: "HENRIKSDAL",
        url: "http://www.ikea.com/se/sv/catalog/products/S59847817/",
      }
    ];
    
    var Hello = React.createClass({
      renderRow(props) {
        return (
          <tr>
            <td>{ props._id }</td>
            <td>{ props.price }</td>
            <td>{ props.title }</td>
            <td>{ props.url }</td>
          </tr>
        );
      },
    
      render: function() {
        return (
          <table>
            { this.props.rows.map(this.renderRow) }
          </table>
        );
      }
    });
    
    ReactDOM.render(
      <Hello rows={rows} />,
      document.getElementById('container')
    );
    

    工作小提琴 https://jsfiddle.net/zwdjmozn/1/

    【讨论】:

      【解决方案3】:

      这是@Andreyco 答案的扩展,其中定义了一个单独的模板,但在我的情况下,我在地图调用中引用了 JSX 模板 (&lt;Row /&gt;

      const Table = (props) => (
      <div>
        <p>Your Table</p>
        <table>
        <tbody>
          {props.rows.map((x,i) => <Row key={i} data={x} />) }
        </tbody>
        </table>
      </div>
      )
      
      const Row = (props:any) => (
        <tr>
            <td>{props.data[0]}</td>
            <td>{props.data[1]}</td>
            <td>{props.data[2]}</td>
          </tr>
      )
      

      JSFiddle

      【讨论】:

        最近更新 更多