当前位置:   article > 正文

POI 导出excel 文件 前端代码_apache poi 前端对应写法

apache poi 前端对应写法
// 导出 查询列表
exportExcel() {
  crudArchivesManagement.exportExcel().then(res => {
    console.log(res)
    this.download(res)
  })
},
download(data) {
  if (!data) {
    return
  }
 // 创建一个新的URL对象,通过这个URL,可以获取到所指定文件的完整内容
  const url = window.URL.createObjectURL(new Blob([data]))
 //document.createElement()是在对象中创建一个对象
  let link = document.createElement('a')
  link.style.display = 'none'
  link.href = url
  link.setAttribute('download', '生效客户档案管理.xlsx')
  document.body.appendChild(link)
  link.click()
  URL.revokeObjectURL(link.href) // 释放URL 对象
  document.body.removeChild(link)
  link = null
},

 

js中

export function exportExcel() {
  return request({
    url: 'archives-management/exportQueryList',
    method: 'get',
    responseType: 'arraybuffer'
  })
}
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/842579
推荐阅读
相关标签
  

闽ICP备14008679号