upload.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. import api from '../../api/api.js'
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. source: {
  8. value: 'media',
  9. type: String
  10. },
  11. /* 文件夹ID */
  12. parentid: {
  13. type: String,
  14. value: wx.getStorageSync('siteP').appfolderid
  15. }
  16. },
  17. /**
  18. * 组件的初始数据
  19. */
  20. data: {
  21. originFiles: [
  22. ],
  23. attachmentids: [],
  24. gridConfig: {
  25. column: 5,
  26. width: 120,
  27. height: 120,
  28. },
  29. config: {
  30. count: 1,
  31. },
  32. timer: null,
  33. uploadCount: 0
  34. },
  35. /**
  36. * 组件的方法列表
  37. */
  38. methods: {
  39. handleAdd(file) {
  40. let files = file.detail.files.map(e => {
  41. e.status = 'loading'
  42. return e
  43. })
  44. this.setData({
  45. uploadCount: files.length,
  46. originFiles: files,
  47. attachmentids: []
  48. })
  49. },
  50. handleRemove(data) {
  51. let file = data.detail.file
  52. this.setData({
  53. originFiles: this.data.originFiles.filter(e => {
  54. return e.name !== file.name
  55. })
  56. })
  57. },
  58. toSetFileData() {
  59. let files = this.data.originFiles
  60. for (let i = 0; i < files.length; i++) {
  61. // 初始化数据
  62. let that = this,
  63. data = this.requestType(files[i]);
  64. data.content.filename = data.content.filename ? data.content.filename : `${Date.now()}.${data.content.filetype}`;
  65. //发送请求
  66. wx.getFileSystemManager().readFile({
  67. filePath: files[i].url,
  68. success: result => {
  69. //返回临时文件路径
  70. const fileData = result.data;
  71. api._post(data).then(res => {
  72. if (res.msg == "成功") {
  73. that.uploadFile(res.data, fileData)
  74. }
  75. })
  76. },
  77. fail: console.error
  78. })
  79. }
  80. return new Promise((reslove, reject) => {
  81. this.data.timer = setInterval(e => {
  82. if (this.data.uploadCount === 0) {
  83. clearInterval(this.data.timer)
  84. reslove()
  85. }
  86. }, 1000)
  87. })
  88. },
  89. /* 请求类型 */
  90. requestType(file) {
  91. var index = file.url.lastIndexOf(".");
  92. var ext = file.url.substr(index + 1);
  93. //文件名称
  94. return {
  95. "classname": "system.attachment.huawei.OBS",
  96. "method": "getFileName",
  97. "content": {
  98. "filename": file.name,
  99. "filetype": ext,
  100. "parentid": this.data.parentid
  101. }
  102. }
  103. },
  104. /* 上传成功反馈 */
  105. uploadFile(res, data) {
  106. var that = this;
  107. wx.request({
  108. url: res.uploadurl,
  109. method: "PUT",
  110. data: data,
  111. header: {
  112. 'content-type': 'application/octet-stream'
  113. },
  114. success(a) {
  115. api._post({
  116. "classname": "system.attachment.huawei.OBS",
  117. "method": "uploadSuccess",
  118. "content": {
  119. "serialfilename": res.serialfilename
  120. }
  121. }).then(rs => {
  122. that.setData({
  123. originFiles: that.data.originFiles.map(e => {
  124. if (e.name === res.filename) {
  125. e.status = ''
  126. }
  127. return e
  128. })
  129. })
  130. that.data.attachmentids.push(rs.data.attachmentids[0])
  131. that.setData({
  132. uploadCount: that.data.uploadCount - 1
  133. })
  134. }).catch(err => {
  135. console.log(err)
  136. })
  137. }
  138. })
  139. },
  140. }
  141. })