分页导出方式

2021-03-08  本文已影响0人  李大嘴JimmyLee
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()
      })
上一篇 下一篇

猜你喜欢

热点阅读