赞
踩
- download(url){
- const link = document.createElement('a');
- // 这里是将链接地址url转成blob地址,
- fetch(url).then(res => res.blob()).then(blob => {
- link.href = URL.createObjectURL(blob)
- // 下载文件的名称及文件类型后缀
- link.download = "test.doc";
- document.body.appendChild(link)
- link.click()
- //在资源下载完成后 清除 占用的缓存资源
- window.URL.revokeObjectURL(link.href);
- document.body.removeChild(link);
- });
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。