The img tag introduces the imageBecause react actually renders the page through the js reader function, you cannot import the image by directly writing src="path" We can import images just like importing modules import img from './../../../../asset/img/user.png' Need to be introduced in the following way <img src={require('../images/picture.png')} alt="label"/> Background image introduction 1 The first is to create a new CSS file in a regular way, and then you can directly write the CSS syntax .img { background: url('../images/picture.png') 0 0 no-repeat; } 2 The second way is to introduce it in the react component through variables, and then directly assign the variables to the img tag // Import image file import bg from '../images/bg.png' // Define a style object by string concatenation const imgStyle = { width: '100%', height: '500px', backgroundImage: 'url(' + bg + ')', backgroundPosition: 'center 0', backgroundSize: '2045px 472px', backgroundRepeat: 'no-repeat' } class Home extends Component { constructor () { super (props) } render() { //Finally assign the variable directly to the tag <div style="imgStyle"> ... </div> } } requireWe can also wrap the relative path with require and assign it directly to src, just like in vue. <img width="100" height="100" src={require('./../../../../asset/img/user.png')} alt="" className={'user-img'}/> **Note:** There is a problem here because there are some minor differences due to different versions of the file-loader library. In higher versions of the file-loader library, esModule defaults to true, and require returns an ES module instead of a string path. The default attribute of this ES module is a string path, so it should be written like this: <img width="100" height="100" src={require('./../../../../asset/img/user.png').default} alt="" className={'user-img'}/> We should not worry about the version of our file-loader. When we use require directly and still cannot display the image normally, we can add .default after require. This concludes this article about several ways to introduce images into react projects. For more relevant content about introducing images into react, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: A brief discussion on the implementation of MySQL's limit paging optimization solution
>>: Tutorial diagram of installing CentOS and Qt in Vmware virtual machine
After setting up the MySQL master-slave, you ofte...
1. Download address https://dev.mysql.com/downloa...
It is mainly a CSS style control and a META tag; C...
1. Send effect HTML <div id="send-btn&quo...
MySQL storage engine overview What is a storage e...
Docker error 1. Check the cause docker logs nexus...
1. Confirm whether MySQL has been installed. You ...
Here we mainly use spring-boot out of the box, wh...
To achieve an effect similar to Windows forms, dr...
Rendering Commonly used styles in Blog Garden /*T...
Note that this is not a project created by vue-cl...
The experimental environment is as follows Here y...
1. Introduction MDL lock in MYSQL has always been...
introduction When I was learning more about datab...
Copy code The code is as follows: .sugLayerDiv{ p...