下载文件接口

两种:

一种,地址直接可以在浏览器打开的

   downFile (item) {
      const link = document.createElement(‘a‘)
      link.setAttribute("download", item.ATTA_NAME) //下载的文件名
      link.href = item.ATTA_URL   //文件url
      link.click()
    }

 

另一种,

     download(fileData){
            const url = window.URL.createObjectURL(new Blob([fileData],{type: ‘application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8‘}))
            const link = document.createElement(‘a‘)
            link.href = url
            link.setAttribute(‘download‘, ‘下载文件名称.xls‘) // 下载文件的名称及文件类型后缀
            document.body.appendChild(link)
            link.click()
            document.body.removeChild(link); // 下载完成移除元素
            window.URL.revokeObjectURL(url); // 释放掉blob对象
        },

 

下载文件接口

上一篇:问题 L: Two Choices


下一篇:git工作流程