后台接口返回void但是response有设置合适的相关信息,前端调用接口解析Blob数据下载excel文件

1、pom.xml文件增加依赖:

复制代码
<dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
        </dependency>

2、接口代码如下:

复制代码
/**
     * 企业列表--导出
     */
    @GetMapping(value = "/downloadTenantList")
    public void downloadTenantList(HttpServletRequest request,HttpServletResponse response) {
        response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
        response.setCharacterEncoding("utf-8");
        Workbook wb = new SXSSFWorkbook(500);
        Sheet sheet = wb.createSheet();
        wb.setSheetName(0,"企业");
        Row titleRow1 = sheet.createRow(0);
        titleRow1.setHeightInPoints(30);
        Cell titleCellID = titleRow1.createCell(0);
        titleCellID.setCellValue("ID");
        Cell titleCellName = titleRow1.createCell(1);
        titleCellName.setCellValue("名称");

        Row titleRow2 = sheet.createRow(1);
        titleRow2.setHeightInPoints(30);
        Cell valCellID2 = titleRow2.createCell(0);
        valCellID2.setCellValue("ID");
        Cell valCellName2 = titleRow2.createCell(1);
        valCellName2.setCellValue("名称");
        try
        {
            wb.write(response.getOutputStream());
        }
        catch (Exception e)
        {
            log.error("导出企业Excel异常{}", e.getMessage());
        }
        finally
        {
            IOUtils.closeQuietly(wb);
        }
    }

3、前端代码如下,可以作为参考,但需要根据实际情况整理

复制代码
import { saveAs } from 'file-saver'
function blobValidate(data) {
  return data.type !== 'application/json'
}
/**
* 参数处理
* @param {*} params  参数
*/
export function tansParams(params) {
  let result = ''
  for (const propName of Object.keys(params)) {
    const value = params[propName];
    var part = encodeURIComponent(propName) + "=";
    if (value !== null && value !== "" && typeof (value) !== "undefined") {
      if (typeof value === 'object') {
        for (const key of Object.keys(value)) {
          if (value[key] !== null && value[key] !== "" && typeof (value[key]) !== 'undefined') {
            let params = propName + '[' + key + ']';
            var subPart = encodeURIComponent(params) + "=";
            result += subPart + encodeURIComponent(value[key]) + "&";
          }
        }
      } else {
        result += part + encodeURIComponent(value) + "&";
      }
    }
  }
  return result
}
export function download(url, params, filename, config) {
  downloadLoadingInstance = Loading.service({ text: "正在下载数据,请稍候", spinner: "el-icon-loading", background: "rgba(0, 0, 0, 0.7)", })
  return service.post(url, params, {
    transformRequest: [(params) => { return tansParams(params) }],
    headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
    responseType: 'blob',//使用这个或者{responseType:'arraybuffer'}
    ...config
  }).then(async (data) => {
    const isBlob = blobValidate(data);
    if (isBlob) {
      const blob = new Blob([data])
      saveAs(blob, filename)
    } else {
      const resText = await data.text();
      const rspObj = JSON.parse(resText);
      const errMsg = errorCode[rspObj.code] || rspObj.msg || errorCode['default']
      Message.error(errMsg);
    }
    downloadLoadingInstance.close();
  }).catch((r) => {
    console.error(r)
    Message.error('下载文件出现错误,请联系管理员!')
    downloadLoadingInstance.close();
  })
}

这样就可以通过调用接口的方式导出excel文件,请求接口就可以在header中设置认证头

相关推荐
teeeeeeemo19 分钟前
如何做HTTP优化
前端·网络·笔记·网络协议·http
范范之交21 分钟前
JavaScript基础语法two
开发语言·前端·javascript
界面开发小八哥1 小时前
DevExtreme Angular UI控件更新:引入全新严格类型配置组件
前端·ui·界面控件·angular.js·devexpress
bitbitDown1 小时前
重构缓存时踩的坑:注释了三行没用的代码却导致白屏
前端·javascript·vue.js
xiaopengbc1 小时前
火狐(Mozilla Firefox)浏览器离线安装包下载
前端·javascript·firefox
用户016523844411 小时前
Webpack5 入门与实战,前端开发必备技能无密
前端
小高0071 小时前
🔥🔥🔥前端性能优化实战手册:从网络到运行时,一套可复制落地的清单
前端·javascript·面试
古夕2 小时前
my-first-ai-web_问题记录01:Next.js的App Router架构下的布局(Layout)使用
前端·javascript·react.js
杨超越luckly2 小时前
HTML应用指南:利用POST请求获取上海黄金交易所金价数据
前端·信息可视化·金融·html·黄金价格
Jerry2 小时前
Compose 中的基本布局
前端