ภาพไม่แสดงผลกับ MUI ตอบโต้

0

คำถาม

ฉันพยายามที่จะแสดงของฉันรูปกับ itemDate.js แฟ้ม:

const itemData = [
    {
      img: "../assets/photos/photoportrait.jpeg",
      title: 'Breakfast',
    },

แล้วโทรมาด้วยการชุดผลงานของฉันส่วนประกอบ:

import * as React from 'react';
import ImageList from '@mui/material/ImageList';
import ImageListItem from '@mui/material/ImageListItem';
import itemData from './itemData';


function Portfolio() {

return(
<ImageList sx={{ width: 500, height: 450 }} cols={3} rowHeight={164}>
  {itemData.map((item) => (
    <ImageListItem key={item.img}>
      <img
        src={item.img}
        srcSet={item.img}
        alt={item.title}
        loading="lazy"
      />
    </ImageListItem>
  ))}
</ImageList>

ไม่มีข้อผิดพลาดข้อความเส้นทางที่ถูกต้องแต่ไม่มีอะไรปรากฎบนหน้าของฉัน. มันทำงานกับเชื่อมโยงแต่ไม่ได้ทำงานกับท้องถิ่นเส้นทางเดินของตัวเอง รู้บ้างมั้ย?

ขอบคุณ

arrays image material-ui reactjs
2021-11-23 13:51:11
1

คำตอบที่ดีที่สุด

0

ฉันไม่ได้มีปัญหากับรหัสของคุณ. ฉันแค่อคัดลอกรหัสของคุณและองค์ทรงเตรียม codesandbox นแล้วหนีมัน มันทำงานสบายดี

นี่คือรหัสสมบูรณ์:

import * as React from "react";
import ImageList from "@mui/material/ImageList";
import ImageListItem from "@mui/material/ImageListItem";

const itemData = [
  {
    img: "../assets/photos/photoportrait.jpeg",
    title: "Breakfast"
  }
];

export default function App() {
  return (
    <ImageList sx={{ width: 500, height: 450 }} cols={3} rowHeight={164}>
      {itemData.map((item) => (
        <ImageListItem key={item.img}>
          <img
            src={item.img}
            srcSet={item.img}
            alt={item.title}
            loading="lazy"
          />
        </ImageListItem>
      ))}
    </ImageList>
  );
}
2021-11-23 14:14:21

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................

ดังอยู่ในนี้หมวดหมู่

ดังคำถามอยู่ในนี้หมวดหมู่