react中 如何使用图片

Posted alchemist-z

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react中 如何使用图片相关的知识,希望对你有一定的参考价值。

//render
第一种方法:先const一个对象,把需要应用图片的dom上的style写入对象中,
  然后在return()中使用style关键字赋值为预先定义的那个style对象
const bgGround = {
    display:‘block‘,
    height: ‘600px‘,
    width:‘800px‘,
    background: `url( ${require("../image/notfound404.jpg")})`
}

return(
  <div style = { bgGround }></div>
)
 
第二种方法:直接import imgUrl from "../image/notfound404.jpg"
  然后return()中 直接使用img标签,将url赋值为imgUrl 
 
import imgUrl from "../image/notfound404.jpg"
return(
    <img url = {imgUrl}/>
)

以上是关于react中 如何使用图片的主要内容,如果未能解决你的问题,请参考以下文章

使用 react-native-camera,如何访问保存的图片?

react native如何支持WebP图片?

react native中如何往服务器上传网络图片

如何使用React Native从图片后面移动一个 buttom?

如何使用 React 前端从 Mongoose 显示带有 <img> 的图像

[react] 在React中如何引入图片?哪种方式更好?