const App = ()=>{
const img = 'http://xx .png'
return <div style={{backgroudImgae :img }}></div>
}
可能的原因
- url 无效;
- url中字符串中包含空格;
const App = ()=>{
const img = 'http://xx .png'
return <div style={{backgroudImgae :img }}></div>
}