Unable to load images from local library in React.js

前端 未结 2 1958
無奈伤痛
無奈伤痛 2020-12-12 05:50

I have written a code for my website and unfortunately, i am not able to load images that are located in my local library. I have moved my images folder inside \'src\' folde

2条回答
  •  萌比男神i
    2020-12-12 06:22

    My answer only applies if you are using create-react-app or Webpack with the file-loader plugin.

    You have to import the picture file before using it. This has to be done in order for Webpack to bundle the images correctly for the production build.

    import pic1 from './Pictures/1.jpg';
    ...
    
    

    You can read more here.

提交回复
热议问题