我正在将变量customPhoto传递到组件中,并希望在const bg内使用它以用于样式。下面的示例不起作用-我应该更改什么?
let bg = {
backgroundImage: {`url(${customPhoto})`}
};
答案 0 :(得分:0)
我在您的代码中看到的唯一变化是删除了网址前和结尾的大括号
更改
backgroundImage: {`url(${customPhoto})`}
收件人
backgroundImage: `url(${customPhoto})`
答案 1 :(得分:0)
您也可以执行inline-css
<div style={{ backgroundImage: `url(${customPhoto})` }}>