Vue中项目进行文件压缩与解压缩 (接口返回文件的url压缩包前端解析并展示出来,保存的时候在压缩后放到接口入参进行保存)

安装   npm install pako

在Vue组件中引入pako:
import pako from 'pako';

 接口返回的url是这个字段 tableSsjsonUrl  其实打开就是压缩包
 const source = await tableFileUrl ({ id: this.$route.query.id}); 
        if(source.code === 0) {
                this.titleName  = source.data.tableName
              }
if(source.code === 0 && source.data.tableSsjsonUrl) {
  const fileUrl = source.data.tableSsjsonUrl
        fetch(fileUrl, {
          headers: {
            'Cache-Control': 'no-cache'
          }
        })
          .then(response => response.blob())
          .then(blob => {
            const reader = new FileReader();
            reader.onload = () => {
              const compressedData = new Uint8Array(reader.result);
              const decompressedData = pako.ungzip(compressedData, { to: 'string' });
              this.spread.fromJSON(JSON.parse(decompressedData));
            };
            reader.readAsArrayBuffer(blob);
          })
          .catch(error => {
            console.error('Failed to fetch file:', error);
          });
}


压缩传参如下
   let spreadJSON = JSON.stringify(this.spread.toJSON({ }));
      const uint8Array = new TextEncoder().encode(spreadJSON);
      // 进行gzip压缩
      const compressedData = pako.gzip(uint8Array);
      // 将压缩后的数据转换成Blob类型并下载
      // const blob = new Blob([compressedData], { type: 'application/gzip' });
      //     saveAs(blob, 'example.gz');
      // 创建FormData对象
      const formData = new FormData();

      // 将压缩后的数据作为FormData的一部分
      formData.append('file', new Blob([compressedData]));
      formData.append('id', this.$route.query.id);
      console.log(formData.get('file'), '9999999999')
      try {
        // designInfoUpdate
        const res = await updateTableFileGzip(formData);
        if (res.code === 0) {
          this.$modal.msgSuccess('保存成功!')

        } else {
          // this.$modal.msgError15('保存失败!')
        }
      } catch (error) {
        // this.$modal.msgError15('保存失败!')
      }

参考链接  Vue中如何进行文件压缩与解压缩?_vue压缩文件_毕设徐师兄的博客-CSDN博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值