前后端约定导出CSV格式的Excel

2023-12-25 16:42:27
DataStatistics.exportData({}).then((res: any) => {
    console.log(res)
    if (!res.data) {
      return
    }

    // console.log(res)
    const blob = new Blob(['\uFEFF' + res.data], { //其他类型应该不用加'\uFEFF'
      type: 'text/csv;charset=utf-8' //参见 常见 MIME 类型列表
    })
    const downloadElement = document.createElement('a')
    downloadElement.style.display = 'none'
    const href = window.URL.createObjectURL(blob) // 创建下载的链接
    downloadElement.href = href
    let fileName = "";
    if (!fileName) {
      fileName = '下载页数据统计' + moment().format('YYYYMMDD') + '.csv' // 下载后文件名
    }
    downloadElement.download = fileName // 下载后文件名
    document.body.appendChild(downloadElement)
    downloadElement.click() // 点击下载
    document.body.removeChild(downloadElement) // 下载完成移除元素
    window.URL.revokeObjectURL(href) // 释放blob对象
  });

常见 MIME 类型列表

文章来源:https://blog.csdn.net/qq_40958876/article/details/135199101
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。