使用Reaction-Modal||TypeError传递道具(Img Url):无法读取未定义的属性(正在读取'映射') [英] Passing Props (img url ) using React-Modal || TypeError: Cannot read properties of undefined (reading 'map')

查看:29
本文介绍了使用Reaction-Modal||TypeError传递道具(Img Url):无法读取未定义的属性(正在读取'映射')的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试运行此代码时,出现以下错误:

TypeError:无法读取未定义的属性(读取‘map’)

此代码应返回图像模式,但抛出错误。我不明白为什么在映射函数中会出现此错误。

在API调用之前,我的deps数组是空的,所以使用dess.map会导致错误吗?还是Cookie问题?

DepositRecord.js

import React, { useEffect, useState } from "react";
import { Button, ButtonToolbar, Table } from "react-bootstrap";
import Cookies from 'universal-cookie';
import AddDepositModal from "./AddDeposiModal";

const DepositRecord = () => {
  const [deps, setDeps] = useState([]);
  const [visibleModal, setVisibleModal] = useState(false);
  const [depImage, setDepImage] = useState(null);

    useEffect(() => {
    loadDepsHandler();
    }, []);

  const loadDepsHandler = () => {
    const myRequest = new Request("https://XXXXXXXXXX/DepositRecords", {
      method: "GET",
      cache: "default",
      headers: { Authorization: `Bearer ${cookies.get('userToken')}` },
    });
    debugger;
    fetch(myRequest)
      .then((res) => res.json())
      .then((data) => {
        const { results } = data;
        setDeps(results);
      })
      .catch((err) => console.log(err));
  };

  const setDepHandler = (id) => {
    const dep = deps.find((a) => a.id.value === id);
    debugger;
    setDepImage(dep.picture.large);
    setVisibleModal(true);
  };

  return (
    <div>
      <h3>Customer's Deposit Record</h3>
      <br />

      <Table className="mt-4" striped bordered hover size="sm">
        <thead>
          <tr>
            <th>Deposit id</th>
            <th>user name</th>
            <th>img attachment</th>
          </tr>
        </thead>
        <tbody>
          {deps.map((item) => (
            <tr key={item.id.name}>
              <td>{item.id.name}</td>
              <td>{item.value}</td>
              <td>
                <ButtonToolbar>
                  <Button
                    variant="primary"
                    onClick={() => setDepHandler(item.id.value)}
                  >
                    image attachment
                  </Button>
                </ButtonToolbar>
              </td>
            </tr>
          ))}
        </tbody>
      </Table>
      {visibleModal && (
        <AddDepositModal
          show={visibleModal}
          onHide={() => setVisibleModal(false)}
          image={depImage}
        />
      )}
    </div>
  );
};

export default DepositRecord;

AddDepositModal.js

import React from "react";
 import { Button, Modal } from "react-bootstrap";

 const AddDepositModal = ({ show, onHide, image }) => {
  return (
    <Modal show={show} onHide={onHide}>
      <Modal.Header closeButton>
        <Modal.Title id="contained-modal-title-vcenter">
          Deposit Record
        </Modal.Title>
      </Modal.Header>
      <Modal.Body>
        <img src={image} width={700} height={1100} alt={image} />
      </Modal.Body>
      <Modal.Footer>
        <Button variant="danger" onClick={onHide}>
          Close
        </Button>
      </Modal.Footer>
    </Modal>
  );
};
export default AddDepositModal;

推荐答案

首先检查您的阵列,然后进行映射:

       <tbody>
      {deps.length > 0 && deps.map((item) => (
        <tr key={item.id.name}>
          <td>{item.id.name}</td>
          <td>{item.value}</td>
          <td>
            <ButtonToolbar>
              <Button
                variant="primary"
                onClick={() => setDepHandler(item.id.value)}
              >
                image attachment
              </Button>
            </ButtonToolbar>
          </td>
        </tr>
      ))}
    </tbody>

这篇关于使用Reaction-Modal||TypeError传递道具(Img Url):无法读取未定义的属性(正在读取&amp;#39;映射&amp;#39;)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆