123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // utils/upload.js
- const http = require('../../common/request');
- const config = require('../../common/config.js');
- class Upload {
- static imgUp = [];
- static index = 0;
- static token = '';
- // 获取七牛云 token
- static async qiniuUpImg() {
- const { data } = await http.getApi(config.API_QINIU_UP_IMG_TOKEN, {});
- if (data.code === 200) {
- this.token = data.data.token;
- }
- }
- // 上传文件核心方法
- static async uploadFile(tempFilePaths) {
- if (!this.token) {
- await this.qiniuUpImg();
- }
-
- while (this.index < tempFilePaths.length) {
- uni.showLoading({
- mask:true,
- title:`${this.index + 1}/${tempFilePaths.length}`
- })
- const res = await uni.uploadFile({
- url: config.QINIU_UPLOAD_SITE,
- filePath: tempFilePaths[this.index],
- name: 'file',
- formData: { token: this.token },
- });
- if (res[1]) {
- const rtDataObj = JSON.parse(res[1].data);
- const img = {url:config.QINIU_SITE + rtDataObj.key,title:""};
- this.imgUp.push(img);
- this.index += 1;
- }else{
- uni.hideLoading()
- }
- }
- uni.hideLoading()
- const result = [...this.imgUp];
- this.imgUp = [];
- this.index = 0;
- return result;
- }
- }
- export default Upload; // 确保导出类
|