• <tfoot id='5QRjK'></tfoot><legend id='5QRjK'><style id='5QRjK'><dir id='5QRjK'><q id='5QRjK'></q></dir></style></legend>

  • <small id='5QRjK'></small><noframes id='5QRjK'>

        <bdo id='5QRjK'></bdo><ul id='5QRjK'></ul>
      <i id='5QRjK'><tr id='5QRjK'><dt id='5QRjK'><q id='5QRjK'><span id='5QRjK'><b id='5QRjK'><form id='5QRjK'><ins id='5QRjK'></ins><ul id='5QRjK'></ul><sub id='5QRjK'></sub></form><legend id='5QRjK'></legend><bdo id='5QRjK'><pre id='5QRjK'><center id='5QRjK'></center></pre></bdo></b><th id='5QRjK'></th></span></q></dt></tr></i><div id='5QRjK'><tfoot id='5QRjK'></tfoot><dl id='5QRjK'><fieldset id='5QRjK'></fieldset></dl></div>

      1. 显示一个弹出窗口,其中包含来自 react.js 中的一个表的元素及其总数的信息

        时间:2023-10-01
      2. <small id='8GmgV'></small><noframes id='8GmgV'>

        <i id='8GmgV'><tr id='8GmgV'><dt id='8GmgV'><q id='8GmgV'><span id='8GmgV'><b id='8GmgV'><form id='8GmgV'><ins id='8GmgV'></ins><ul id='8GmgV'></ul><sub id='8GmgV'></sub></form><legend id='8GmgV'></legend><bdo id='8GmgV'><pre id='8GmgV'><center id='8GmgV'></center></pre></bdo></b><th id='8GmgV'></th></span></q></dt></tr></i><div id='8GmgV'><tfoot id='8GmgV'></tfoot><dl id='8GmgV'><fieldset id='8GmgV'></fieldset></dl></div>
              <tbody id='8GmgV'></tbody>
                <bdo id='8GmgV'></bdo><ul id='8GmgV'></ul>
                  <tfoot id='8GmgV'></tfoot>
                  <legend id='8GmgV'><style id='8GmgV'><dir id='8GmgV'><q id='8GmgV'></q></dir></style></legend>
                  本文介绍了显示一个弹出窗口,其中包含来自 react.js 中的一个表的元素及其总数的信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在用 React.Js 开发一个应用程序.

                  I'm developing an application in React.Js.

                  我有数组:

                  array = [
                    {
                      "id": 1,
                      "date": {
                        "id": 1,
                        "name": "202001"
                      },
                      "item": {
                        "id": 1,
                        "name": "I1"
                      },
                      "price": 100
                      },
                      {
                      "id": 2,
                      "date": {
                        "id": 2,
                        "name": "202002"
                      },
                      "item": {
                        "id": 1,
                        "name": "I1"
                      },
                      "price": 200
                    },
                    {
                      "id": 3,
                      "date": {
                        "id": 2,
                        "name": "202002"
                      },
                      "item": {
                        "id": 2,
                        "name": "I2"
                      },
                      "price": 300
                    },
                  ]
                  

                  而我显示的数据如表所示:

                  And I show the data as shown in the table:

                  <头>
                  项目202001202002总计
                  I1100200300
                  I2-300300
                  总计100500600

                  我这样做是为了获得这些值:

                  And I did this to get those values:

                  items_dicc = array.reduce((acc, e) => {
                      if (!acc[e["item"]["name"]]) {
                        acc[e["item"]["name"]] = {
                          [e["date"]["name"]]: e["price"]
                        }
                      } else {
                        acc[e["item"]["name"]][e["date"]["name"]] = e["price"]
                      }
                      return acc
                    }, {})
                  
                  dates = [...new Set(Object.keys(items_dicc).map(i => Object.keys(items_dicc[i])).flat())]
                  
                  totalSumPerDate = {};
                  
                  dates.forEach(date => {
                    const sumOnDate = Object.values(items_dicc).reduce((acc, curr) => {
                      acc = acc + (curr[date]? curr[date] : 0);
                      return acc;
                    }, 0);
                    totalSumPerDate[[date]] = sumOnDate;
                  });
                  
                  totalSum = Object.values(totalSumPerDate).reduce((acc, curr) => acc+curr, 0);
                  
                  sumPerItem = {};
                  
                  Object.keys(items_dicc).forEach(key => {
                     const sum = Object.values(items_dicc[key]).reduce((acc, curr) => acc + curr, 0);
                     sumPerItem[[key]] = sum;
                  });
                  
                  
                  <table>
                    <thead>
                      <tr>
                        <th>ITEM</th>
                        {dates.map(date => <th>{date}</th>)}
                        <th>TOTAL</th>
                      </tr>
                    </thead>
                    <tbody>
                    {
                      Object.keys(items_dicc).map((item) => {
                        return (
                          <tr>
                            <td>{item}</td>
                            {dates.map((date) => <td>{items_dicc[item][date] || ''}</td>)}
                            <td>{sumPerItem[item]}</td>
                          </tr>
                        )
                      })
                    }
                      <tr>
                        <td>TOTAL</td>
                          {Object.values(totalSumPerDate).map(item => <td>{item}</td>)}
                        <td>{totalSum}</td>
                      </tr>
                    </tbody>
                  </table>
                  

                  我需要能够通过弹出窗口显示数组可能包含的其他数据(例如 id).

                  I need to be able to show through a popup other data that the array may contain (for example the id).

                  我知道要做到这一点,有必要在组件中创建一个本地状态,以便在单击所选记录时更新详细信息并将状态传递给模式.

                  I understand that to do this it is necessary to create a local state in the component to update the details when clicking on the selected record and pass the state to the modal.

                  它还应该能够引入总计信息.

                  It should also be able to bring in the totals info.

                  我该怎么做,建议?

                  推荐答案

                  试试这个方法,

                  您必须为表格行的选定记录创建本地状态并将其传递给模态组件.单击表格行时更新所选记录.

                  You have to create a local state for the selected record of the table row and pass it to the modal component. Update the selected record on click of the table row.

                  import React, { useState } from "react";
                  import "./styles.css";
                  import "bootstrap/dist/css/bootstrap.min.css";
                  
                  const array = [
                    {
                      id: 1,
                      date: {
                        id: 1,
                        name: "202001"
                      },
                      item: {
                        id: 1,
                        name: "I1"
                      },
                      price: 100
                    },
                    {
                      id: 2,
                      date: {
                        id: 2,
                        name: "202002"
                      },
                      item: {
                        id: 1,
                        name: "I1"
                      },
                      price: 200
                    },
                    {
                      id: 3,
                      date: {
                        id: 2,
                        name: "202002"
                      },
                      item: {
                        id: 2,
                        name: "I2"
                      },
                      price: 300
                    }
                  ];
                  
                  export default function App() {
                    const [show, setShow] = useState(false);
                    const [selectedData, setSelectedData] = useState({});
                    const hanldeClick = (selectedId) => {
                      const selectedRec = array.find((val) => val.item.name === selectedId);
                      setSelectedData(selectedRec);
                      setShow(true);
                    };
                  
                    const hideModal = () => {
                      setShow(false);
                    };
                    const items_dicc = array.reduce((acc, e) => {
                      if (!acc[e["item"]["name"]]) {
                        acc[e["item"]["name"]] = {
                          [e["date"]["name"]]: e["price"]
                        };
                      } else {
                        acc[e["item"]["name"]][e["date"]["name"]] = e["price"];
                      }
                      return acc;
                    }, {});
                  
                    const dates = [
                      ...new Set(
                        Object.keys(items_dicc)
                          .map((i) => Object.keys(items_dicc[i]))
                          .flat()
                      )
                    ];
                  
                    const totalSumPerDate = {};
                  
                    dates.forEach((date) => {
                      const sumOnDate = Object.values(items_dicc).reduce((acc, curr) => {
                        acc = acc + (curr[date] ? curr[date] : 0);
                        return acc;
                      }, 0);
                      totalSumPerDate[[date]] = sumOnDate;
                    });
                  
                    const totalSum = Object.values(totalSumPerDate).reduce(
                      (acc, curr) => acc + curr,
                      0
                    );
                  
                    const sumPerItem = {};
                  
                    Object.keys(items_dicc).forEach((key) => {
                      const sum = Object.values(items_dicc[key]).reduce(
                        (acc, curr) => acc + curr,
                        0
                      );
                      sumPerItem[[key]] = sum;
                    });
                  
                    return (
                      <>
                        <table>
                          <thead>
                            <tr>
                              <th>ITEM</th>
                              {dates.map((date) => (
                                <th>{date}</th>
                              ))}
                              <th>TOTAL</th>
                            </tr>
                          </thead>
                          <tbody>
                            {Object.keys(items_dicc).map((item) => {
                              return (
                                <tr onClick={() => hanldeClick(item)}>
                                  <td>{item}</td>
                                  {dates.map((date) => (
                                    <td>{items_dicc[item][date] || ""}</td>
                                  ))}
                                  <td>{sumPerItem[item]}</td>
                                </tr>
                              );
                            })}
                            <tr>
                              <td>TOTAL</td>
                              {Object.values(totalSumPerDate).map((item) => (
                                <td>{item}</td>
                              ))}
                              <td>{totalSum}</td>
                            </tr>
                          </tbody>
                        </table>
                        {show && <Modal details={selectedData} handleClose={hideModal} />}
                      </>
                    );
                  }
                  
                  const Modal = ({ handleClose, details }) => {
                    console.log(details);
                    return (
                      <div className="modal display-block">
                        <section className="modal-main">
                          <div className="App">
                            <table class="table">
                              <thead>
                                <tr>
                                  <th scope="col">ITEM</th>
                                  <th scope="col">ID</th>
                                  <th scope="col">DATE</th>
                                  <th scope="col">PRICE</th>
                                </tr>
                              </thead>
                              <tbody>
                                <tr>
                                  <td>{details?.item?.name}</td>
                                  <td>{details?.item?.id}</td>
                                  <td>{details?.date?.name}</td>
                                  <td>{details?.price}</td>
                                </tr>
                              </tbody>
                            </table>
                          </div>
                          <button onClick={handleClose}>close</button>
                        </section>
                      </div>
                    );
                  };
                  

                  工作代码 - https:///codesandbox.io/s/adoring-moore-rsn97?file=/src/App.js:0-3665

                  这篇关于显示一个弹出窗口,其中包含来自 react.js 中的一个表的元素及其总数的信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Watir:需要双击一个元素才能打开自定义弹出窗口 下一篇:从父窗口中的子窗口运行函数

                  相关文章

                    <bdo id='wYNmh'></bdo><ul id='wYNmh'></ul>
                  <legend id='wYNmh'><style id='wYNmh'><dir id='wYNmh'><q id='wYNmh'></q></dir></style></legend>
                1. <i id='wYNmh'><tr id='wYNmh'><dt id='wYNmh'><q id='wYNmh'><span id='wYNmh'><b id='wYNmh'><form id='wYNmh'><ins id='wYNmh'></ins><ul id='wYNmh'></ul><sub id='wYNmh'></sub></form><legend id='wYNmh'></legend><bdo id='wYNmh'><pre id='wYNmh'><center id='wYNmh'></center></pre></bdo></b><th id='wYNmh'></th></span></q></dt></tr></i><div id='wYNmh'><tfoot id='wYNmh'></tfoot><dl id='wYNmh'><fieldset id='wYNmh'></fieldset></dl></div>

                2. <tfoot id='wYNmh'></tfoot>

                      <small id='wYNmh'></small><noframes id='wYNmh'>