【发布时间】:2021-03-08 21:35:49
【问题描述】:
我想从我的 React 应用程序中的文件上传图像(我使用 create-react-app)。它没有显示,并且出现了错误消息。
错误信息是
./src/components/pages/TimeTable.js 未找到模块:无法解析“/Users/jolly/Desktop/Dance_School_Website-master/src/components/pages”中的“../dance.png”
我的文件:
--public
--images
--dance.png
import TimeTablePic from "../dance.png";
function TimeTable() {
return (
<>
<img className="TimeTablePic" src={TimeTablePic} alt="TimeTable" />
<Footer2 />
</>
);
}
export default TimeTable;
【问题讨论】:
-
你的 png 没有
export声明,所以你不能import它。您应该可以在src属性中使用图片的路径。