前端实现调用后台接口下载,arraybuffer和blob

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端实现调用后台接口下载,arraybuffer和blob相关的知识,希望对你有一定的参考价值。

参考技术A

注:window.URL.createObjectURL

参考文档:
前端 ArrayBuffer 与 Blob 互转 、
MDN Blob 、
MDN ArrayBuffer 、
MDN URL.createObjectURL()

前端axios下载excel

需求:通过后端接口下载excel文件,后端没有文件地址,返回二进制流文件
实现:axios(ajax类似)
主要代码:

axios:设置返回数据格式为blob或者arraybuffer
如:

    var instance = axios.creat({         ... //一些配置
        responseType: ‘blob‘, //返回数据的格式,可选值为arraybuffer,blob,document,json,text,stream,默认值为json
    })
请求时的处理:
  getExcel().then(res => {
      //这里res.data是返回的blob对象     
      var blob = new Blob([res.data], {type: ‘application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8‘}); //application/vnd.openxmlformats-officedocument.spreadsheetml.sheet这里表示xlsx类型
      var downloadElement = document.createElement(‘a‘);
      var href = window.URL.createObjectURL(blob); //创建下载的链接
      downloadElement.href = href;
      downloadElement.download = ‘xxx.xlsx‘; //下载后文件名
      document.body.appendChild(downloadElement);
      downloadElement.click(); //点击下载
      document.body.removeChild(downloadElement); //下载完成移除元素
      window.URL.revokeObjectURL(href); //释放掉blob对象 
 })


以上是关于前端实现调用后台接口下载,arraybuffer和blob的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序给了后台接口,前端怎样调用

微信小程序给了后台接口,前端怎样调用

Axios前端页面使用axios调用后台接口

前后端分离怎么获取后台接口数据

前端提供一个接口或者调用后台接口,这个接口具体指什么

前端post请求实现导出excel表格