gpt4 book ai didi

reactjs 图像不显示

转载 作者:行者123 更新时间:2023-12-04 12:06:32 26 4
gpt4 key购买 nike

我有一个本地镜像,我想把它放在我的内置 react 网页上。我看了this但这对我没有帮助。我的代码如下:

const right={
float:"right",
fontSize:"18px"
}

export default class CloseUpCam extends Component {
render() {
return (
<div className="closeupcam" style={right}>
<div>CLOSEUP CAMERA</div>
<img src={require('./img/hand.png')} width="70" height="50" alt="cam"/>
</div>
)}}

没有错误信息。图片就是不显示。有谁知道出了什么问题?谢谢。

最佳答案

在 react 中,您必须像所有其他文件一样导入图像文件

import Image from "./img/hand.png'

const right={
float:"right",
fontSize:"18px"
}

export default class CloseUpCam extends Component {
render() {
return (
<div className="closeupcam" style={right}>
<div>CLOSEUP CAMERA</div>
<img src={Image} width="70" height="50" alt="cam"/>
</div>
)}}

关于reactjs 图像不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51569026/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com