upload.js.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 {
  11. data
  12. } = await http.getApi(config.API_QINIU_UP_IMG_TOKEN, {});
  13. if (data.code === 200) {
  14. this.token = data.data.token;
  15. }
  16. }
  17. // 上传文件核心方法
  18. static async uploadFile(tempFilePaths) {
  19. if (!this.token) {
  20. await this.qiniuUpImg();
  21. }
  22. while (this.index < tempFilePaths.length) {
  23. uni.showLoading({
  24. mask: true,
  25. title: `${this.index + 1}/${tempFilePaths.length}`
  26. })
  27. // const res = await uni.uploadFile({
  28. // url: config.QINIU_UPLOAD_SITE,
  29. // filePath: tempFilePaths[this.index],
  30. // name: 'file',
  31. // formData: {
  32. // token: this.token
  33. // },
  34. // });
  35. const res = await this.uploadFileAsync(tempFilePaths)
  36. if (res) {
  37. const rtDataObj = JSON.parse(res.data);
  38. const img = {
  39. url: config.QINIU_SITE + rtDataObj.key,
  40. title: ""
  41. };
  42. this.imgUp.push(img);
  43. this.index += 1;
  44. } else {
  45. uni.hideLoading()
  46. }
  47. }
  48. uni.hideLoading()
  49. const result = [...this.imgUp];
  50. this.imgUp = [];
  51. this.index = 0;
  52. return result;
  53. }
  54. static uploadFileAsync(tempFilePaths) {
  55. return new Promise((resolve, reject) => {
  56. uni.uploadFile({
  57. url: config.QINIU_UPLOAD_SITE,
  58. filePath: tempFilePaths[this.index],
  59. name: 'file',
  60. formData: {
  61. token: this.token
  62. },
  63. success(res) {
  64. resolve(res)
  65. },
  66. fail(err) {
  67. reject(err)
  68. }
  69. });
  70. })
  71. }
  72. }
  73. export default Upload; // 确保导出类