<div hidden={this.state.selhidden}>{this.state.filelist.map(function (item) {return(<div><img src='http://localhost:3000/scanner/src/pictrue/scan.jpg' alt={item} /><br/></div>);})}</div>
1 回答
BIG阳
TA贡献1859条经验 获得超6个赞
render: (text) => {
if (text && text.length) {
const imgs = text.map((item, index) =>
<div key={index} style={{ backgroundImage: `url(${item.mediaUrl})` }} className='bg-cover teacher-medias' />
)
return <div style={{ display: 'flex' }}>{imgs}</div>
}
}
- 1 回答
- 0 关注
- 1961 浏览
添加回答
举报
0/150
提交
取消