index.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. import Taro, { Component } from '@tarojs/taro'
  2. import { View, Button, Image } from '@tarojs/components'
  3. import './index.scss'
  4. export default class ImagePicker extends Component {
  5. static defaultProps = {
  6. time: Date.parse(new Date()),
  7. urls: HOST,
  8. }
  9. async componentWillReceiveProps(nextProps) {
  10. const token = await this.getStorage('token')
  11. const urls = this.props.urls
  12. this.setState({
  13. token,
  14. imageUrls: !urls ? [] : [urls]
  15. })
  16. }
  17. getStorage(key) {
  18. return Taro.getStorage({ key }).then(res => res.data).catch(() => '')
  19. }
  20. async handleUpload() {
  21. const { api, num = 1, id, onChange, keyId } = this.props
  22. const token = await this.getStorage('token')
  23. Taro.chooseImage({
  24. count: num, // 最多选择多少张图片
  25. sizeType: ['compressed'], // 压缩图像文件
  26. sourceType: ['album', 'camera'], // 从相册和相机选择图片
  27. success: (res) => {
  28. const files = res.tempFilePaths;
  29. const condition = res.tempFiles;
  30. for (var i = 0; i < condition.length; i++) {
  31. const isJpgOrPng = condition[i].type === 'image/jpeg' || condition[i].type === 'image/png';
  32. if (!isJpgOrPng) {
  33. Taro.showToast({
  34. title: '仅支持JPG和PNG格式的图片',
  35. icon: 'none',
  36. mask: true
  37. })
  38. }
  39. const isLt2M = condition[i].size / 1024 / 1024 < 2;
  40. if (!isLt2M) {
  41. Taro.showToast({
  42. title: '仅支持小于2MB的图片',
  43. icon: 'none',
  44. mask: true
  45. })
  46. }
  47. if (!isJpgOrPng || !isLt2M) {
  48. return false;
  49. }
  50. }
  51. // 上传每张图片到服务器
  52. files.forEach((file) => {
  53. const formData = {}
  54. formData[keyId] = id
  55. Taro.uploadFile({
  56. url: HOST + api,// 上传接口地址
  57. // url: 'http://zhcq.jishutao.com/gw/user/logo',
  58. filePath: file,
  59. header: {
  60. 'Authorization': token,
  61. },
  62. formData,
  63. name: 'file', // 服务端接收的文件字段名
  64. success: (result) => {
  65. if (result.statusCode === 200) {
  66. const responseData = JSON.parse(result.data); // 服务器返回的数据
  67. onChange(responseData.data) // 调用父级方法存储
  68. // 可以根据服务器返回的数据做一些逻辑处理
  69. const { imageUrls } = this.state;
  70. this.setState({ imageUrls: [responseData.data] })
  71. // this.setState({ imageUrls: [...imageUrls, ...[responseData.data]] });
  72. } else {
  73. // 处理上传失败的情况
  74. Taro.showToast({
  75. title: '上传失败',
  76. icon: 'none',
  77. mask: true
  78. })
  79. }
  80. },
  81. fail: (error) => {
  82. // 处理上传失败的情况
  83. // Taro.showToast({
  84. // title: '上传失败',
  85. // icon: 'none',
  86. // mask: true
  87. // })
  88. },
  89. });
  90. });
  91. },
  92. });
  93. }
  94. // 图片删除
  95. async deleteImg(options) {
  96. const { url, payload, method } = options
  97. const token = await this.getStorage('token')
  98. Taro.request({
  99. url,
  100. method,
  101. data: payload,
  102. header: {
  103. 'content-type': "application/json",
  104. 'Authorization': token,
  105. 'Accept': 'application/json, text/javascript,'
  106. },
  107. dataType: 'json',
  108. }).then((res) => {
  109. }).catch((err) => {
  110. })
  111. }
  112. handleDelete(index) {
  113. const { imageUrls } = this.state;
  114. const updatedUrls = [...imageUrls];
  115. let obj = {
  116. url: HOST + this.props.api + `/${this.props.id}`,
  117. method: 'DELETE',
  118. payload: {},
  119. }
  120. this.deleteImg(obj)
  121. updatedUrls.splice(index, 1);
  122. this.setState({ imageUrls: updatedUrls });
  123. }
  124. handlePreview(index) {
  125. const { api, id, time } = this.props
  126. const { imageUrls, token } = this.state;
  127. const urls = imageUrls.map((url) => HOST + api + `/${id}?token=${token}&t=${time}`);
  128. Taro.previewImage({
  129. current: urls[index],
  130. urls,
  131. });
  132. }
  133. render() {
  134. const { imageUrls = [], token } = this.state
  135. const { api, time, id, num = 1 } = this.props
  136. return (
  137. <View className='upload'>
  138. {!!id && imageUrls && imageUrls.map((url, index) => (
  139. <View className='upload-item' key={index}>
  140. <Image
  141. className='upload-item-img'
  142. src={HOST + api + `/${id}?token=${token}&t=${time}`}
  143. mode='aspectFit'
  144. // onClick={() => this.handlePreview(index)}
  145. />
  146. <View className='upload-item-delete'
  147. onClick={this.handleDelete.bind(this, index)}
  148. >
  149. 删除
  150. </View>
  151. </View>
  152. ))}
  153. {imageUrls.length < num && <View className='upload-add' onClick={this.handleUpload.bind(this)}>+</View>}
  154. </View>
  155. )
  156. }
  157. }