我正在使用React和Webpack.
我有一个React组件,它采用一个url并显示图像.
由于React在运行之前不会知道图像网址,因此webpack仍然可以"需要"图像网址吗?
import React, {Component} from 'react' export default class Episode extends Component { constructor(props){ super(props) } render(){ let imageStyle = {backgroundImage: 'url(' + this.props.episode.url +')'} return () } }{this.props.episode.category}
Episode {this.props.episode.number}
作为参考,我的图片位于:
src/assets/images
我的网站正在建设中 dist