【发布时间】:2020-08-26 14:46:52
【问题描述】:
尝试渲染图像时如何处理? 我在下面尝试,但它没有显示图像。
const columns = [
{
title: 'image',
dataIndex: 'notificationImage.url',
key: 'notificationImage.url',
render: (record) =>
//console.log(text, record && record.notificationImage && record.notificationImage.url, index)
{
record && record.notificationImage &&
<img
width="460" height="345"
src={record.notificationImage.url} />
}
},]
【问题讨论】:
标签: reactjs antd ant-design-pro