美文网首页
分页导出方式

分页导出方式

作者: 李大嘴JimmyLee | 来源:发表于2021-03-08 13:45 被阅读0次
getExportData(pageData).then((res) => {
        let blob = new Blob([res.file], {
          type:
            'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
        })
        let a = document.createElement('a')
        a.href = window.URL.createObjectURL(blob)
        a.download = res.name
        a.click()
      })

相关文章

网友评论

      本文标题:分页导出方式

      本文链接:https://www.haomeiwen.com/subject/isupqltx.html