Loading

摘要: function download(url,filename){ getBlob(url,function(blob){ saveAs(blob,filename) }) } function getBlob(url,cb) { var xhr = new XMLHttpRequest(); xhr 阅读全文
posted @ 2021-08-12 14:37 行走在前端的开发者 阅读(1095) 评论(0) 推荐(0) 编辑