暂解决文件直接预览无法下载的问题
将文件链接地址转为blob
fetch('https://blog.csdn.net').then(res => res.blob()).then(blob => {
const a = document.createElement('a')
a.href = URL.createObjectURL(blob)
console.log(a.href)
a.download = '' // 下载文件的名字
document.body.appendChild(a)
a.click()})