#在React页面中引入本地图片路径

<img src={require('../img/iconxx.png')} alt="" />
import x1 from '../img/x1.png'
import x2 from '../img/x2.png'

<img src={x1} alt="" />
<img src={x2} alt="" />
<img src='http://localhost:8000/react-project/src/img/iconxx.png' alt="" />  //不推荐使用

背景图片引用方法如下:

const divStyle = {
  color: 'blue',
  backgroundImage: 'url(' + imgUrl + ')',
  // 或者 background: `url${require("xxx.jpg")}`
};

function XXXXX Component() {
  return <div style={divStyle}>Iverson.tian!</div>;
}

猜你喜欢

转载自blog.csdn.net/iversons/article/details/80171053