码迷,mamicode.com
首页 > Web开发 > 详细

js下载篇

时间:2019-12-17 13:03:16      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:comment   column   下载文件   data-   move   tee   file   export   one   

1、地址下载

 

// 地址下载,fileName暂无作用
export const urlDownload = (url, fileName = ‘下载文件‘) => {
  // 创建隐藏的可下载链接
  let eleLink = document.createElement(‘a‘)
  eleLink.download = fileName
  eleLink.style.display = ‘none‘
  eleLink.href = url
  // 触发点击
  document.body.appendChild(eleLink)
  eleLink.click()
  // 然后移除
  document.body.removeChild(eleLink)
}

 

2、转化text下载

 

// 内容转化为文件下载
export const fileDownload = (file, fileName = ‘下载文件‘) => {
  // 创建隐藏的可下载链接
  let eleLink = document.createElement(‘a‘)
  eleLink.download = fileName
  eleLink.style.display = ‘none‘
  // 字符内容转变成blob地址
  let blob = new Blob([file])
  eleLink.href = URL.createObjectURL(blob)
  // 触发点击
  document.body.appendChild(eleLink)
  eleLink.click()
  // 然后移除
  document.body.removeChild(eleLink)
}

 

 

 
 
 

js下载篇

标签:comment   column   下载文件   data-   move   tee   file   export   one   

原文地址:https://www.cnblogs.com/baimulan/p/12053762.html

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