用blob下载音频并改名
Posted zhuangcui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用blob下载音频并改名相关的知识,希望对你有一定的参考价值。
在用a标签下载音频时,跳转为播放,而不是下载
fetch(url).then(res => res.blob()).then(blob => { const a = document.createElement(‘a‘); document.body.appendChild(a) a.style.display = ‘none‘ // 使用获取到的blob对象创建的url const url = window.URL.createObjectURL(blob); a.href = url; // 指定下载的文件名 a.download = ‘xxxx.mp3‘; a.click(); document.body.removeChild(a) // 移除blob对象的url window.URL.revokeObjectURL(url); });
不过,在下载第二个时,浏览器出现提示‘是否允许下载多个’的问题
以上是关于用blob下载音频并改名的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Angular 6 中的 blob URL 下载音频文件?
已解决在react+ts中 atnd 用 upload 组件报错Failed to execute ‘readAsArrayBuffer,param 1 is notof type Blob(代码片段
已解决在react+ts中 atnd 用 upload 组件报错Failed to execute ‘readAsArrayBuffer,param 1 is notof type Blob(代码片段