我正在开发这个应用程序,我的卡片组件接收 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>
)
}
1条答案
按热度按时间oaxa6hgo1#
我知道答案了。
/图像/图像/
${props.img}
小问题。