Several ways to introduce pictures in react projects

Several ways to introduce pictures in react projects

The img tag introduces the image

Because 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>
 }
}

require

We 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 introduction to React
  • How to introduce scss into react project
  • How to introduce Angular components in React
  • React introduces container components and display components to Vue

<<:  A brief discussion on the implementation of MySQL's limit paging optimization solution

>>:  Tutorial diagram of installing CentOS and Qt in Vmware virtual machine

Recommend

Detailed explanation of how Zabbix monitors the master-slave status of MySQL

After setting up the MySQL master-slave, you ofte...

Detailed process of decompressing and installing mysql5.7.17 zip

1. Download address https://dev.mysql.com/downloa...

CSS eight eye-catching HOVER effect sample code

1. Send effect HTML <div id="send-btn&quo...

Detailed explanation of storage engine in MySQL

MySQL storage engine overview What is a storage e...

Analysis of the cause of docker error Exited (1) 4 minutes ago

Docker error 1. Check the cause docker logs nexus...

Detailed tutorial on installing mysql on centos 6.9

1. Confirm whether MySQL has been installed. You ...

Example of how to deploy Spring Boot using Docker

Here we mainly use spring-boot out of the box, wh...

Better looking CSS custom styles (title h1 h2 h3)

Rendering Commonly used styles in Blog Garden /*T...

Vue song progress bar sample code

Note that this is not a project created by vue-cl...

Implementation method of Nginx+tomcat load balancing cluster

The experimental environment is as follows Here y...

MYSQL METADATA LOCK (MDL LOCK) MDL lock problem analysis

1. Introduction MDL lock in MYSQL has always been...

Can MySQL's repeatable read level solve phantom reads?

introduction When I was learning more about datab...