upload.js.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // utils/upload.js
  2. const http = require('../../common/request');
  3. const config = require('../../common/config.js');
  4. class Upload {
  5. static imgUp = [];
  6. static index = 0;
  7. static token = '';
  8. // 获取七牛云 token
  9. static async qiniuUpImg() {
  10. const { data } = await http.getApi(config.API_QINIU_UP_IMG_TOKEN, {});
  11. if (data.code === 200) {
  12. this.token = data.data.token;
  13. }
  14. }
  15. // 上传文件核心方法
  16. static async uploadFile(tempFilePaths) {
  17. if (!this.token) {
  18. await this.qiniuUpImg();
  19. }
  20. while (this.index < tempFilePaths.length) {
  21. uni.showLoading({
  22. mask:true,
  23. title:`${this.index + 1}/${tempFilePaths.length}`
  24. })
  25. const res = await uni.uploadFile({
  26. url: config.QINIU_UPLOAD_SITE,
  27. filePath: tempFilePaths[this.index],
  28. name: 'file',
  29. formData: { token: this.token },
  30. });
  31. if (res[1]) {
  32. const rtDataObj = JSON.parse(res[1].data);
  33. const img = {url:config.QINIU_SITE + rtDataObj.key,title:""};
  34. this.imgUp.push(img);
  35. this.index += 1;
  36. }else{
  37. uni.hideLoading()
  38. }
  39. }
  40. uni.hideLoading()
  41. const result = [...this.imgUp];
  42. this.imgUp = [];
  43. this.index = 0;
  44. return result;
  45. }
  46. }
  47. export default Upload; // 确保导出类