码迷,mamicode.com
首页 > 其他好文 > 详细

vue blob流下载zip文件

时间:2020-07-01 12:56:01      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:move   color   name   blob   obj   window   content   href   cat   

asset_zip(this.delarr).then((res) => {
    const content = res.data
    const blob = new Blob([content],{type:"application/zip"})
    var timestamp = (new Date()).valueOf();
    const fileName = timestamp+‘.zip‘
    if (‘download‘ in document.createElement(‘a‘)) { // 非IE下载
        const elink = document.createElement(‘a‘)
        elink.download = fileName
        elink.style.display = ‘none‘
        elink.href = window.URL.createObjectURL(blob)
        document.body.appendChild(elink)
        elink.click()
        window.URL.revokeObjectURL(elink.href) // 释放URL 对象
        document.body.removeChild(elink)
    } else { // IE10+下载
        navigator.msSaveBlob(blob, fileName)
    }
})

转载文章:https://blog.csdn.net/Thekingyu/article/details/103140848

vue blob流下载zip文件

标签:move   color   name   blob   obj   window   content   href   cat   

原文地址:https://www.cnblogs.com/shangguancn/p/13218373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!