前后端约定导出CSV格式的Excel
发布时间:2023年12月25日
DataStatistics.exportData({}).then((res: any) => {
console.log(res)
if (!res.data) {
return
}
const blob = new Blob(['\uFEFF' + res.data], {
type: 'text/csv;charset=utf-8'
})
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)
});
常见 MIME 类型列表
文章来源:https://blog.csdn.net/qq_40958876/article/details/135199101
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!