vue將文件/圖片批量打包下載zip的教程
vue將文件/圖片批量打包下載
各種格式都可以,只要url能夠打開或者下載文件即可.
1.通過文件的url,使用js的XMLHttpRequest獲取blob
2.將blob壓縮為zip
由于異步并行加載文件,速度還是蠻快的,我141個4M多的圖片,1分左右加載完成,49個4M的圖片4秒
添加依賴
//npm install jszip
//npm install file-saver
在頁面的script中引入依賴
import JSZip from ’jszip’
import FileSaver from ’file-saver’
代碼
/**文件打包 * arrImages:文件list:[{fileUrl:文件url,renameFileName:文件名}] * filename 壓縮包名 * */ filesToRar(arrImages, filename) { let _this = this; let zip = new JSZip(); let cache = {}; let promises = []; _this.title = ’正在加載壓縮文件’; for (let item of arrImages) { const promise= _this.getImgArrayBuffer(item.fileUrl).then(data => { // 下載文件, 并存成ArrayBuffer對象(blob) zip.file(item.renameFileName, data, { binary: true }); // 逐個添加文件 cache[item.renameFileName] = data; }); promises.push(promise); } Promise.all(promises).then(() => { zip.generateAsync({ type: 'blob' }).then(content => { _this.title = ’正在壓縮’; // 生成二進制流 FileSaver.saveAs(content, filename); // 利用file-saver保存文件 自定義文件名 _this.title = ’壓縮完成’; }); }).catch(res=>{ _this.$message.error(’文件壓縮失敗’); }); }, //獲取文件blob getImgArrayBuffer(url){ let _this=this; return new Promise((resolve, reject) => { //通過請求獲取文件blob格式 let xmlhttp = new XMLHttpRequest(); xmlhttp.open('GET', url, true); xmlhttp.responseType = 'blob'; xmlhttp.onload = function () { if (this.status == 200) { resolve(this.response); }else{ reject(this.status); } } xmlhttp.send(); }); },
補充知識:vue 生成二維碼并且批量打包下載代碼
我就廢話不多說了,大家還是直接看代碼吧~
<template><div><div v-show='codeId' ref='QrcodePage' style='z-index:-1111;position:absolute;left:-99999;width: 450px;height: 475px;background-size: cover;'><div v-if='codeId'><QrcodeVue :logoSrc='imageUrl' :key='random' :callback='texte' :text='codeValue' :logoScale='50' :size='750'></QrcodeVue><p style='text-align: center; font-size: 1.5625rem;'>{{ codeNumber }}</p></div></div></div></template><script>let loadingInstance = ’’;import QrcodeVue from ’vue-qr’;import html2canvas from ’html2canvas’;import JSZip from ’jszip’;import FileSaver from ’file-saver’;export default {name: ’qrcode’,components: {QrcodeVue},data() {return {random: ’1’,codeId: ’’,qrcodeUrl: ’’,imageUrl: ’’,// imageUrl: ’https://shop.mmdddd.com/workShopWeb/static/img/72.png’,//logoqrContentImage: ’’,codeValue: ’’,initCodeVal: ’http://xcx.nmte.net/tips/index.html’,codeNumber: ’’,arr: [],qrcodeArr: [],index: 0};},watch: {index(newName, oldName){if(newName != oldName && newName <= this.arr.length-1){setTimeout(_ => {this.setarr(this.arr);}, 0);}else {this.$nextTick(_ => {loadingInstance.close();});}}},created() {},mounted() {},methods: {texte(url,qid) {setTimeout(_ => {this.createImgs();}, 100);},setarr(arr) {this.arr = arr;if(this.index > this.arr.length -1) {this.index = 0;}let index=this.index||0;loadingInstance = this.$Loading.service({lock: true, text: ’二維碼碼批量下載中,請稍后...’, spinner: ’el-icon-loading’, background: ’rgba(0, 0, 0, 0.7)’});this.codeNumber = this.arr[index].codeNumber; this.arr[index].codeId ? (this.codeId = this.arr[index].codeId) : this.$Message.warn(’獲取信息失敗,請刷新重試’);this.codeValue = this.initCodeVal + ’?codeId=’ + this.arr[index].codeId + ’&codeNumber=’ + this.arr[index].codeNumber;this.random = Math.random(); },createImgs() {var that = this;if(that.index <= that.arr.length -1 && that.codeId){let shareContent = that.$refs.QrcodePage, width = shareContent.offsetWidth, height = shareContent.offsetHeight,canvas = document.createElement(’canvas’), scale = 1; canvas.width = width * scale; canvas.height = height * scale; canvas.style.width = (shareContent.clientWidth * scale) / 100 + ’rem’;canvas.style.height = (shareContent.clientHeight * scale) / 100 + ’rem’;canvas.getContext(’2d’).scale(scale, scale); let opts = {scale: scale, canvas: canvas,logging: false,width: width, height: height,useCORS: true};html2canvas(shareContent, opts).then(function(canvas) {const qrContentImage = canvas.toDataURL(’image/jpeg’, 1.0);if(that.index <= that.arr.length -1 && that.codeId){that.qrcodeArr.push({url: qrContentImage,name: that.arr[that.index].codeNumber});}if(that.codeId){that.index ++;}if(that.qrcodeArr.length == that.arr.length){that.packageImages();that.codeId = null;}}).catch(function(reason) {console.log(reason);});}},packageImages() {let that = this;const zip = new JSZip();const cache = {};setTimeout(_ => {let arr = that.qrcodeArr;arr.forEach((item,index)=>{let fileName = item.name;zip.file(fileName + ’.png’,item.url.substring(22),{base64:true})cache[fileName] = item.url})zip.generateAsync({type:'blob'}).then(content => { FileSaver.saveAs(content, '二維碼.zip') })},0)}}};</script><style lang='less' scoped='scoped'>#qrCode {width: 375px;height: 375px;position: absolute;top: 52%;left: 50%;transform: translate(-50%, -50%);img {display: block;width: 100%;height: 100%;}}</style>
調(diào)用setarr傳數(shù)組
以上這篇vue將文件/圖片批量打包下載zip的教程就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. js select支持手動輸入功能實現(xiàn)代碼2. 如何在PHP中讀寫文件3. java加載屬性配置properties文件的方法4. PHP正則表達式函數(shù)preg_replace用法實例分析5. 什么是Python變量作用域6. 《Java程序員修煉之道》作者Ben Evans:保守的設(shè)計思想是Java的最大優(yōu)勢7. CSS3中Transition屬性詳解以及示例分享8. php redis setnx分布式鎖簡單原理解析9. bootstrap select2 動態(tài)從后臺Ajax動態(tài)獲取數(shù)據(jù)的代碼10. vue使用moment如何將時間戳轉(zhuǎn)為標準日期時間格式
