uploadImg.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // https://blog.csdn.net/WeiflR10/article/details/122978004
  2. import { commonConfig } from '../common/config';
  3. //直接导出这个方法
  4. export function uploadImg(event,fileList) {
  5. return new Promise((resolve,reject)=>{
  6. // 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式
  7. let lists = [].concat(event.file)
  8. let fileListLen = fileList.length
  9. lists.map((item) => {
  10. fileList.push({
  11. ...item
  12. })
  13. })
  14. // console.log('fileListLen===',fileListLen);
  15. // 这块把uview的改了一下 不用单独封装上传功能
  16. for (let i = 0; i < lists.length; i++) {
  17. uni.uploadFile({
  18. url: commonConfig.uploadFileUrl, // 测试地址
  19. filePath: lists[i].url, // 文件路径
  20. name: 'file',
  21. formData: {
  22. bucket: 'greattransition'
  23. },
  24. success: (res) => {
  25. let resolveData = {
  26. data: res.data,
  27. fileListLen: fileListLen
  28. }
  29. // 成功之后返回resolveData
  30. console.log('resolveData===',resolveData);
  31. resolve(resolveData);
  32. fileListLen++
  33. }
  34. });
  35. }
  36. })
  37. }