简体   繁体   English

使用React和Webpack导入图像

[英]Importing images with react and webpack

I've been trying to import an image using react and webpack however I haven't been successful yet.. I already installed file-loader and url-loader using npm, I already configured the webpack.config file as I saw it on the docs however I just get an error.. https://drive.google.com/open?id=1vdSpLwgwJgUuBCKjej_QosJazMaiGe7P 我一直在尝试使用react和webpack导入图像,但是我还没有成功。.我已经使用npm安装了文件加载器和url-loader,我已经配置了webpack.config文件,就像我在文档,但是我只是收到一个错误。.https ://drive.google.com/open?id=1vdSpLwgwJgUuBCKjej_QosJazMaiGe7P

thanks for any help! 谢谢你的帮助!

Instead write like this in your SearchBar component. 而是在SearchBar组件中这样编写。

import Minor from './minor.png'

class SearchBar extends component{
 render(){
  return(
     <img src={Minor} alt="myLogo" />
  )
 }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM