美文网首页
前端下载excel文件

前端下载excel文件

作者: Jycoding | 来源:发表于2022-07-26 14:07 被阅读0次

    try {

    // new Blob([data])用来创建URL的file对象或者blob对象

      const url =window.URL.createObjectURL(new Blob([res.data], {type:'application/vnd.ms-excel;' }))

    // 生成一个a标签

      const link =document.createElement('a')

    link.style.display ='none'

      link.href = url

    // 生成时间戳

      const timestamp =new Date().getTime()

    link.download = timestamp +'数据'

      document.body.appendChild(link)

    link.click()

    }catch (error) {

    console.error('download function error!', error)

    }

    https://blog.csdn.net/weixin_52497098/article/details/123279672

    相关文章

      网友评论

          本文标题:前端下载excel文件

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