Riunshow / NoteBook

人生不如意事十之九八,可与人言者并无二三
3 stars 0 forks source link

多文件下载 #10

Open Riunshow opened 5 years ago

Riunshow commented 5 years ago
// 多文件下载方法, 通过 iframe 实现
downloadFile (x) {
  const iframe = document.createElement('iframe')
  iframe.style.display = 'none'
  iframe.style.height = 0
  iframe.src = window.API_DOWNLOAD + x
  document.body.appendChild(iframe)
  setTimeout(() => {
    iframe.remove()
  }, 5 * 60 * 1000)
}