1、elupload上传excel返回文件并进行下载处理

elementUI中 elupload支持配置responseType: “blob,所以需要使用el-upload中的httprequest进行自定义上传接口请求。

<el-upload
        :http-request="uploadExcel"
        ref="upload"
        :limit="1"
        accept=".xlsx, .xls"
        :headers="upload.headers"
        :action="upload.url"
        :disabled="upload.isUploading"
        :auto-upload="false"
        drag
      >
        <i class="el-icon-upload"&gt;</i&gt;
        <div class="el-upload__text"&gt;文件拖到此处,或<em&gt;点击上传</em&gt;</div&gt;
        <div class="el-upload__tip text-center" slot="tip">
          <span>仅允许导入xlsxlsx格式文件</span>
        </div>
      </el-upload>
 uploadExcel(data) {
      var _this = this;
      let params = new FormData();
      params.append("file", data.file);
      axios
        .post('接口', params, {
          responseType: "blob",
          headers: {
            "Content-Type": "application/json",
            Authorization: 'token',//token
          },
        })
        .then((response) => {
        //判断是否导入成果
          if (response.data.type == "application/json") {
           //导入成功
          } else {
          //导入失败返回文件
            _this
              .$confirm("确定导出失败数据吗?", "提示", {
                confirmButtonText: "确定",
                cancelButtonText: "取消",
                type: "warning",
              })
              .then(() => {
                const blob = new Blob([response.data]);
                const a = document.createElement("a");
                const url = window.URL.createObjectURL(blob);
                const filename = Date.parse(new Date()) + ".xlsx";
                a.href = url;
                a.download = filename;
                a.click();
                window.URL.revokeObjectURL(url);
              })
              .catch(() => {});
          }
        })
        .catch((error) => {
          console.log(error);
        });
    },

原文地址:https://blog.csdn.net/m0_46361270/article/details/129507837

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_40580.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注