条件图像源
<Image style={[this.props.imageStyle]}
source={this.props.imagePath
? this.props.imagePath
: require('../theme/images/resource.png')}
/>
如果路径在 imagePath
中可用,则它将被分配给源,否则将分配默认图像路径。
<Image style={[this.props.imageStyle]}
source={this.props.imagePath
? this.props.imagePath
: require('../theme/images/resource.png')}
/>
如果路径在 imagePath
中可用,则它将被分配给源,否则将分配默认图像路径。