服务器之家

服务器之家 > 正文

react antd表格中渲染一张或多张图片的实例

时间:2022-03-07 16:17     来源/作者:豆芽不吃豆

使用antd table中显示一张图片,代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const columns = [ {
 title: "姓名",
 dataIndex: "name",
 width: 100 , // table列定宽 可不设
  fixed: "left" // 固定列的位置
 },
 {
 title: "联系电话",
 width: 150,
 dataIndex: "phone"
 },
 {
 title:"显示一张图片",
 width:150,
 dataIndex:"img"
 render:(text)=> <img src={text}/>
 },
 {
 title:"显示多张图片",
 width:400,
 dataIndex:"imgs"
 render: text => {
 // text是后端传的多个url,需要逗号分隔再显示图片
  if (text) {
  return (
   <div style={{ display: "flex" }}>
   {text.split(",").map((items, index) => {
    return (
    <div
     key={index}
     className="common-img-list"
     style={{
     width: "100px",
     height: "100px",
     marginLeft: "4px",
     overflow: "hidden"
     }}
    >
     <img
     style={{ width: "100%" }}
     src={items}
     onClick={() => {
      InitImageViwer(); // 点击放大图片
     }}
     />
    </div>
    );
   })}
   </div>
  );
  }
 },
]
 
// 点击放大图片预览
function InitImageViwer(
 box = 'common-img-list', // 注意class不要忘记了
 option = {},
 callBack
) {
 setTimeout(() => {
 const viewList = []
 const el = document.querySelectorAll(`.${box}`)
 if (el.length) {
  el.forEach((z, x) => {
  viewList[x] = new ImageViewer(z, option)
  })
  callBack && callBack(viewList)
 }
 }, 1000)
}
 
// table 使用 scroll 表格滚动
<Table columns={columns} scroll={{ x: 1500, y: 500 }} />

实现效果图:

react antd表格中渲染一张或多张图片的实例

点击图片放大预览效果:

react antd表格中渲染一张或多张图片的实例

补充知识:React中antd框架下upload多个图片简单上传

antd的上传组件也是挺好康的,预览、删除也特别方便。适合表单上传。

查询资料多个上传处理 不明确,我就在下面name为file的input隐藏域内储存多个图片上传

这行代码是限制多个图片上传的总数,这里目前是不能超过6张图片,到达六张图片后,点击上传的按钮将会消失。

{this.props.tAccessory >= 6 ? null : uploadButton}

点击眼睛会弹出modl框扩大显示图片。

react antd表格中渲染一张或多张图片的实例

全文代码如下,稍加修改即可使用。

  1. import React from 'react'
  2. import { Form, Input,Upload,Icon,Modal} from 'antd'
  3. import { connect } from 'dva'
  4. const FormItem = Form.Item; 
  5. const { TextArea } = Input; 
  6. function getBase64(file) { 
  7.  return new Promise((resolve, reject) => { 
  8.  const reader = new FileReader(); 
  9.  reader.readAsDataURL(file); 
  10.  reader.onload = () => resolve(reader.result); 
  11.  reader.onerror = error => reject(error); 
  12.  }); 
  13. class AddMa extends React.Component { 
  14.  state = { 
  15.  value: ''
  16.  previewVisible: false
  17.  previewImage: ''
  18.  fileList:[], 
  19.  }; 
  20.  onChange = ({ target: { value } }) => { 
  21.  this.setState({ value }); 
  22.  }; 
  23. //场地图片 
  24.  handleCancel = () => this.setState({ previewVisible: false }); 
  25.  handlePreview = async file => { 
  26.  if (!file.url && !file.preview) { 
  27.   file.preview = await getBase64(file.originFileObj); 
  28.  } 
  29.  this.setState({ 
  30.   previewImage: file.url || file.preview, 
  31.   previewVisible: true
  32.  }); 
  33.  console.log(file); 
  34.  }; 
  35.  handleChange = ({ fileList }) => this.setState({ fileList:fileList }); 
  36.  beforeUpload=(file)=>{ 
  37.   this.setState(({ 
  38.   fileList: [this.state.fileList, file], 
  39.   })); 
  40.  return false
  41.  } 
  42.  render() { 
  43.  const { previewVisible, previewImage, fileList,value} = this.state; 
  44.  const uploadButton = ( 
  45.   <div> 
  46.   <Icon type="plus" /> 
  47.   <div className="ant-upload-text">Upload</div> 
  48.   </div> 
  49.  ); 
  50.  const { getFieldDecorator } = this.props.form; 
  51.  const formItemLayout = { 
  52.   labelCol: { span: 8 }, 
  53.   wrapperCol: { span: 10 }, 
  54.  }; 
  55.  const props={fileList}; 
  56.  return ( 
  57.   <div> 
  58.   <Form> 
  59.    <FormItem{...formItemLayout} label="现场图片"
  60.    {getFieldDecorator('fileList',{initialValue:this.props.tAccessory,valuePropName: 'file'}) 
  61.    ( 
  62.     <div > 
  63.     <Upload name="file" {...props} 
  64.       listType="picture-card" 
  65.       onPreview={this.handlePreview} 
  66.       onChange={this.handleChange} 
  67.       fileList={fileList} 
  68.       accept=".jpg,.png,.gif,.jpeg" 
  69.       beforeUpload={this.beforeUpload} 
  70.     > 
  71.      {this.props.tAccessory >= 6 ? null : uploadButton} 
  72.     </Upload> 
  73.     <Modal visible={previewVisible} footer={null} onCancel={this.handleCancel}> 
  74.      <img alt="example" style={{ width: '100%' }} src={previewImage} /> 
  75.     </Modal> 
  76.     </div> 
  77.    )}</FormItem> 
  78.     
  79.   //这里是多个上传获取到的PhotoList 
  80.    <FormItem{...formItemLayout} > 
  81.    {getFieldDecorator('file',{initialValue:this.props.tAccessory,valuePropName: 'file'}) 
  82.    ( 
  83.     <input type="hidden" name="img" multiple="multiple" /> 
  84.    )}</FormItem> 
  85.   </Form> 
  86.   </div> 
  87.  ); 
  88.  } 
  89.  
  90. function mapStateToProps(state) { 
  91.  const {csIntro,arPicture,tCsInfo,modelResult,tAccessory} = state.cusy; 
  92.  return {csIntro,arPicture,tCsInfo,modelResult,tAccessory}; 
  93.  
  94. export default connect(mapStateToProps)(Form.create()(AddMa)); 

以上这篇react antd表格中渲染一张或多张图片的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/lucky569/article/details/108373954

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部