reactjs 如何使用props指定组件接收到的图片url?

bvn4nwqk  于 2022-12-18  发布在  React
关注(0)|答案(1)|浏览(145)

我正在开发这个应用程序,我的卡片组件接收 prop ,其中一个是img prop ,它包含本地文件的url,但由于我的卡片组件在一个文件夹中,它需要文件的特定地址。
我该怎么办?
我试过:

export default function Card(props) {
    return (
        <div className="card">

            // This ofcourse doesn't work because this isn't the absolute path. Like I have to include ../images/imgUrl
            <img src={props.img} className="card--image" />
       </div>
    )
}
oaxa6hgo

oaxa6hgo1#

我知道答案了。
/图像/图像/${props.img}
小问题。

相关问题