摘要: // 点击文件下载,fileUrl为http的url function downloadFile(fileUrl) { fetch(fileUrl).then(res => res.blob()).then(blob => { const a = document.createElement('a' 阅读全文
posted @ 2021-03-25 17:11 Jone_chen 阅读(51) 评论(0) 推荐(0) 编辑