vue+elementUI实现上传下载文件、图片

这是一个关于前端上传和下载功能的实现示例。组件使用了Element UI,包括一个输入框和上传按钮,支持多文件上传、限制上传数量,并提供文件预览、移除和下载功能。上传成功后,文件地址会自动填充到输入框中,用户可以点击下载按钮进行文件下载。
摘要由CSDN通过智能技术生成
<!--添加/编辑-->
<template>
  <div class="edit_container">
    <el-form
      :model="userForm"
      :rules="userRules"
      ref="updatePage"
      label-width="120px"
      class="edit_form"
    >
      <!--附件地址-->
      <el-form-item :label="tableHeader.AttAdress" class="form_field" prop="AttAdress">
        <div style="display: flex">
          <el-input v-model.trim="userForm.AttAdress" disabled clearable ></el-input>
          <el-upload
            class="upload-demo"
            :action="getAction"
            :headers="headersObj"
            :on-preview="handlePreview"
            :on-remove="handleRemove"
            :on-success="handleAvatarSuccess"
            :before-remove="beforeRemove"
            multiple
            :limit="3"
            :on-exceed="handleExceed"
            :file-list="fileList"
            :show-file-list="false"
          >
            <el-button size="small" type="primary">点击上传</el-button>
          </el-upload>
        </div>
      </el-form-item>
    </el-form>

    <el-button @click="donwload">下载</el-button>
  </div>
</template>
<script>
import {FileDownload} from '@/api/WMSCommonApi'
export default {
  name: "portlet_update",
  props: {},
  data() {
    return {
      headersObj: { Authorization: this.$store.getters.token },
      fileList: [],
      getAction: process.env.VUE_APP_BASE_API_WMS + "aaa?path=default", //上传接口
    };
  },
  created() {},
  methods: {
    handleRemove(file, fileList) {
      console.log(file, fileList);
    },
    handlePreview(file) {
      console.log(file);
    },
    handleExceed(files, fileList) {
      this.$message.warning(
        `当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${
          files.length + fileList.length
        } 个文件`
      );
    },
    beforeRemove(file, fileList) {
      return this.$confirm(`确定移除 ${file.name}`);
    },
    handleAvatarSuccess(val) {
      console.log(val);
      this.$message.success("上传成功");
      this.userForm.AttAdress = val.toString();
    },

    // 下载
    download(val) {
      var index = val.AttAdress.lastIndexOf("."); //获取.后边的字符串
      let obj = val.AttAdress.substring(index + 1, val.AttAdress.length); //文件类型不一样,截取要下载文件后缀
      FileDownload({ filePath: val.AttAdress }) .then((res) => {
          const content = res;
          const blob = new Blob([content]); // 接口返回的数据,依实例而行
          var fileName = "";
          fileName = val.AttName + "." + obj; // 文件名+后缀
          const elink = document.createElement("a");
          elink.download = fileName;
          elink.style.display = "none";
          elink.href = URL.createObjectURL(blob); // 文件流生成的url
          document.body.appendChild(elink);
          elink.click(); // 模拟在按钮上实现一次鼠标点击
          URL.revokeObjectURL(elink.href); // 释放URL 对象
          document.body.removeChild(elink); // 移除 a 标签
          this.btnName = this.commonBtnName.cmdDownloadTemplate;
          this.downloadLoading = false;
        })
        .catch(() => {
          this.btnName = this.commonBtnName.cmdDownloadTemplate;
          this.downloadLoading = false;
        });
    },
  },
};
</script>
<style lang="scss" scoped>
/deep/ .el-upload {
  height: 0;
  line-height: 0;
  button {
    padding: 6px 10px;
  }
}
</style>

你可以使用Vue.jsElement UI来实现前端界面,使用Spring Boot来处理后端逻辑来实现文件模板的上传和下载功能。 首先,你可以创建一个Vue组件来处理文件上传和下载的界面。可以使用Element UI中的Upload组件来实现文件上传功能,使用Button组件来实现文件下载功能。在上传组件中,你可以设置上传的文件类型和大小限制,并在上传成功后获取到文件的URL或者其他信息。 接下来,在后端使用Spring Boot来处理上传和下载的逻辑。你可以创建一个Controller来处理文件上传和下载的请求。在文件上传的方法中,你可以使用MultipartFile来接收上传的文件,并将其保存到服务器上的某个目录中。在文件下载的方法中,你可以根据传入的文件名或者其他标识,从服务器上读取相应的文件,并将其以流的形式返回给前端。 以下是一个简单的示例代码: 前端(Vue.js + Element UI): ```vue <template> <div> <el-upload class="upload-demo" action="/api/upload" :on-success="handleSuccess" :before-upload="beforeUpload" > <el-button type="primary">点击上传</el-button> </el-upload> <el-button type="primary" @click="downloadTemplate">下载模板</el-button> </div> </template> <script> export default { methods: { handleSuccess(response) { // 处理上传成功后的逻辑 console.log(response); }, beforeUpload(file) { // 设置上传文件的类型和大小限制 const fileType = file.type; const fileSize = file.size / 1024 / 1024; // MB const allowedTypes = ['application/pdf', 'application/msword', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document']; // 允许的文件类型 const maxFileSize = 10; // 允许的最大文件大小,单位:MB if (!allowedTypes.includes(fileType)) { this.$message.error('只能上传pdf、doc或docx格式的文件'); return false; } if (fileSize > maxFileSize) { this.$message.error(`文件大小超过了${maxFileSize}MB`); return false; } return true; }, downloadTemplate() { // 处理下载模板的逻辑 window.location.href = '/api/download'; }, }, }; </script> ``` 后端(Spring Boot): ```java @RestController @RequestMapping("/api") public class FileController { @PostMapping("/upload") public String uploadFile(@RequestParam("file") MultipartFile file) { // 处理文件上传逻辑 // 可以将上传的文件保存到服务器上的某个目录中 return "上传成功"; } @GetMapping("/download") public void downloadTemplate(HttpServletResponse response) { // 处理文件下载逻辑 // 根据文件名或者其他标识,从服务器上读取相应的文件,并将其以流的形式返回给前端 String fileName = "template.docx"; // 下载的文件名 String filePath = "/path/to/template.docx"; // 文件在服务器上的路径 try { File file = new File(filePath); InputStream inputStream = new FileInputStream(file); response.setContentType("application/octet-stream"); response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(fileName, "UTF-8")); IOUtils.copy(inputStream, response.getOutputStream()); response.flushBuffer(); } catch (Exception e) { e.printStackTrace(); } } } ``` 这是一个简单的示例,你可以根据自己的需求进行进一步的调整和优化。希望对你有帮助!
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值