Sto cercando di accedere a un'immagine statica da utilizzare all'interno di una backgroundImage
proprietà inline all'interno di React. Sfortunatamente, mi sono esaurito su come farlo.
In generale, ho pensato che avessi fatto semplicemente come segue:
import Background from '../images/background_image.png';
var sectionStyle = {
width: "100%",
height: "400px",
backgroundImage: "url(" + { Background } + ")"
};
class Section extends Component {
render() {
return (
<section style={ sectionStyle }>
</section>
);
}
}
Questo funziona per i <img>
tag. Qualcuno può spiegare la differenza tra i due?
Esempio:
<img src={ Background } />
funziona benissimo.
Grazie!