vue 下載pdf url


 const url = data.data.url
      // const url = window.URL.createObjectURL(new Blob([data.data.url]))
      const link = document.createElement('a') // 創建a標簽
      link.style.display = 'none' // 將a標簽隱藏
      link.target = '_blank'
      link.href = url // 給a標簽添加下載鏈接
      // link.setAttribute('download', '授權協議書') // 此處注意,要給a標簽添加一個download屬性,屬性值就是文件名稱 否則下載出來的文件是沒有屬性的,空白白
      document.body.appendChild(link)
      link.click() // 執行a標簽

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM