vue通過url下載檔案,直接預覽問題

abc6507發表於2020-12-27
// url是檔案地址
fetch(url).then(res => res.blob()).then(blob => { // 將連結地址字元內容轉變成blob地址
	  const a = document.createElement('a')
	  a.href = URL.createObjectURL(blob)
	  console.log(a.href)
	  a.download = ''  // 下載檔案的名字
	  document.body.appendChild(a)
	  a.click()
})

相關文章