自学内容网 自学内容网

VUE请求返回二进制文件流下载文件例子

例如这样返回的二进制文件
在这里插入图片描述

  exportTemplate(data).then((res) => {
    // 返回的是二进制下载文件
    const blob = new Blob([res.data], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' })
    const url = URL.createObjectURL(blob)
    const a = document.createElement('a')
    a.href = url
    a.download = '批量发货数据模版.xlsx'
    a.click()
  })

原文地址:https://blog.csdn.net/weixin_44646977/article/details/145137448

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!