Vue3使用ElementPlus中的el-upload手动上传并调用上传接口

前端代码

html 复制代码
	   <div class="upload-div">
          <el-upload
            v-model:file-list="form.fileImageList"
            ref="uploadRef"
            capture="false"
            action="#"
            accept="image/*"
            list-type="picture-card"
            :on-change="handleChange"
            :auto-upload="false"
            :on-preview="handlePictureCardPreview"
            :on-remove="handleRemove"
            :multiple="true"
          >
            <el-icon>
              <Plus/>
            </el-icon>
          </el-upload>

          <el-dialog v-model="dialogVisible" class="image-dialog">
            <img style="width: 100%;height: 100%" w-full :src="dialogImageUrl" alt="Preview Image"/>
          </el-dialog>
        </div>
typescript 复制代码
const fileBinaryList = ref([]);
const dialogImageUrl = ref('');
const dialogVisible = ref(false);
const buttonLoading = ref(false);

const handleChange = (file, files) => {
  // file是当前上传的文件,files是当前所有的文件,
  fileBinaryList.value = files;
};

const handlePictureCardPreview = (file) => {
  dialogImageUrl.value = file.url;
  dialogVisible.value = true
}

const handleRemove = (file) => {
  delImageByName(file.name).then(response => {
    proxy.$modal.msgSuccess("删除成功");
  }).finally(() => {
  });
}

function submitForm() {
 		let formData = new FormData();  //FormData中的参数
        formData.append('id', form.value.id);
        fileBinaryList.value.forEach((item) => {
          formData.append('files', item.raw);
        });
        uploadBinaryImage(formData);
        proxy.$modal.msgSuccess("修改成功");
}

前端定义接口

typescript 复制代码
export function uploadBinaryImage(data) {
  return request({
    url: '/update/update/uploadBinaryImage',
    method: 'post',
    data: data,
    headers: {
      'Content-Type': 'multipart/form-data'
    }
  })
}

后端代码

实体类

java 复制代码
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.web.multipart.MultipartFile;

/**
 * @author: rattcs
 * @date: 2023/1/13
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class UploadDto {

    private String id;

}

定义接口

java 复制代码
	/**
     * 上传二进制文件图片集合
     */
    @SaCheckPermission("update:update:uploadBinaryImage")
    @Log(title = "上传二进制文件图片", businessType = BusinessType.INSERT)
    @PostMapping("/uploadBinaryImage")
    public void uploadBinaryImage(@RequestBody @RequestParam("files") MultipartFile[] files, UploadDto bo) {
        iInvestigationRiverLakeDischargeOutletsService.uploadBinaryImage(files,bo);
    }

上传文件并插入数据库数据

java 复制代码
	@Value("${upload.dir}")
    private String UPLOAD_DIR;

	@Override
    public void uploadBinaryImage(MultipartFile[] files,UploadDto uploadDto) {
        String id = uploadDto.getId();
        for (MultipartFile file : files) {
            try {
                // 检查上传目录是否存在,不存在则创建
                File uploadDir = new File(UPLOAD_DIR);
                if (!uploadDir.exists()) {
                    uploadDir.mkdirs();
                }

                // 获取文件名
                String fileName = file.getOriginalFilename();
                String suffix = file.getOriginalFilename().split("\\.")[1];

                // 设置上传文件的保存路径
                String fileUploadName = java.util.UUID.randomUUID() + "." + suffix;
                Path filePath = uploadDir.toPath().resolve(fileUploadName);

                // 将文件复制到指定路径
                Files.copy(file.getInputStream(), filePath, StandardCopyOption.REPLACE_EXISTING);
                investigationImageMapper
                    .insert(new InvestigationImage() {{
                        setInvestigationId(Long.valueOf(id));
                        setImageUrl(fileUploadName);
                        setImageName(fileUploadName);
                        setCreateTime(new Date());
                    }});
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
相关推荐
小云小白4 天前
高性能 v-html 弹窗实现:Vue3 + Element Plus 最佳实践
vue3·弹窗·v-html
xun-ming5 天前
SpringBoot和Vue3实战阿里百炼大模型极简版
spring boot·ai·vue3·智能体·百炼大模型
哆啦A梦15885 天前
20, Springboot3+vue3实现前台轮播图和详情页的设计
javascript·数据库·spring boot·mybatis·vue3
小盼江6 天前
基于Springboot3+Vue3的协同过滤鲜花商城推荐系统
vue3·springboot3·鲜花商城
哆啦A梦15886 天前
11,Springboot3+vue3个人中心,修改密码
java·前端·javascript·数据库·vue3
哆啦A梦15887 天前
01, 前端vue3框架的快速搭建以及项目工程的讲解
前端·vue3·springboot
萧曵 丶11 天前
Vue3组件通信全方案
前端·javascript·vue.js·typescript·vue3
Json____11 天前
vue3-商城管理系统-前端静态网站
前端·vue3·ts·商城纯静态
吴声子夜歌16 天前
Vue3——网络框架Axios的应用
javascript·vue3·axios
赵庆明老师25 天前
vben开发入门6:tsconfig.json
json·vue3·vben