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();
            }
        }
    }
相关推荐
之歆6 天前
Vue3 + Vite2.0 全栈开发实践:从零到一构建通用后台管理系统-上
vue3·vite2.0
之歆6 天前
Vue3 + Vite2.0 全栈开发实践:从零到一构建通用后台管理系统-下
javascript·vue.js·vue3
麦麦大数据8 天前
M004_基于Langchain+RAG的银行智能客服系统设计与开发
typescript·langchain·flask·vue3·faiss·rag
哆啦A梦158810 天前
Vue3魔法手册 作者 张天禹 012_路由_(一)
前端·typescript·vue3
麦麦大数据11 天前
M003_中药可视化系统开发实践:知识图谱与AI智能问答的完美结合
人工智能·flask·llm·vue3·知识图谱·neo4j·ner
哆啦A梦158812 天前
Vue3魔法手册 作者 张天禹 015_插槽
前端·vue.js·typescript·vue3
沛沛老爹17 天前
Vue3+TS实战:基于策略模式的前端动态脱敏UI组件设计与实现
前端·ui·vue3·数据安全·策略模式·动态渲染·前端脱敏
gsls20080817 天前
vue3学习笔记
笔记·vue3
平头也疯狂20 天前
RuoYi Office 全景介绍:一个平台管好整个企业
微服务·vue3·springboot·crm·oa·企业管理系统
weixin79893765432...21 天前
vue3 系统的梳理
vue.js·vue3