下载文件

165 阅读1分钟

PixPin_2024-04-06_11-12-46.png

  handleDownload(file) {
      console.log("Hello-->", file);
      const blob = new Blob([file.raw]);
      const a = document.createElement("a");
      const href = window.URL.createObjectURL(blob); // 创建下载连接
      a.href = href;
      a.download = file.name || "";
      document.body.appendChild(a);
      a.click();
      document.body.removeChild(a); // 下载完移除元素
      window.URL.revokeObjectURL(href); // 释放掉blob对象
    },