gpt4 book ai didi

javascript - 样式化组件背景图像 React

转载 作者:太空宇宙 更新时间:2023-11-04 05:47:01 25 4
gpt4 key购买 nike

我正在尝试通过 prop 传递背景图像,但它不起作用,它说 url 未定义。

const CardImage = styled.div`
height: auto;
width: 100%;
background-size: contain;
background: url(${props => props.data.url});
`
function Card(props) {
return (
<CardImage/>
)
}

<Card data={{url: "https://via.placeholder.com/150x150", text: "test"}}/>

最佳答案

你永远不会传递来自 Card 的 Prop 至 <CardImage/> :

function Card(props) {
return <CardImage {...props} />;
}

关于javascript - 样式化组件背景图像 React,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58617591/

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