当前位置: 首页 > article >正文

vue-----window.open打开新窗口文件并且修改窗口标题下载文件

vue-----window.open打开新窗口文件并且修改窗口标题&&下载文件

  // 下载word文件
  downloadFile(url, fileName) {
     const xhr = new XMLHttpRequest();
     xhr.open("GET", url, true);
     xhr.responseType = "blob";
     xhr.onload = function () {
       if (xhr.status === 200) {
         const blob = new Blob([xhr.response]);
         const a = document.createElement("a");
         const url = window.URL.createObjectURL(blob);
         a.href = url;
         a.download = fileName;
         a.click();
         window.URL.revokeObjectURL(url);
       }
     };
     xhr.send();
   },
openShowBtn(tag, url, fileName) {
      if (!url) return this.$message.error("文件为空!");
      if (tag === 2) { //打开新窗口
        const win = window.open("about:blank");
        win.document.title = fileName;
        const iframe = document.createElement("iframe");
        iframe.src = url;
        iframe.style.width = "100%";
        iframe.style.height = "100vh";
        iframe.style.margin = "0";
        iframe.style.padding = "0";
        iframe.style.overflow = "hidden";
        iframe.style.border = "none";
        win.document.body.style.margin = "0";
        win.document.body.appendChild(iframe);
      } else if (tag === 3) {//下载文件
        this.downloadFile(url, fileName);
      }
    },

http://www.kler.cn/a/289603.html

相关文章:

  • Docker
  • 国内源快速在线安装qt5.15以上版本。(10min安装好)(图文教程)
  • WINFORM - DevExpress -> gridcontrol ---->控件(ColumnEdit控件)
  • STL之VectorMapList针对erase方法踩坑笔记
  • 穷举vs暴搜vs深搜vs回溯vs剪枝系列一>优美的排列
  • 【Unity高级】一文了解Unity 中的条件编译(附所有指令)
  • 云微客短视频矩阵系统,如何让企业赢在起跑线?
  • Flask框架默认session处理机制
  • gRPC学习之六:gRPC-Gateway集成swagger
  • 山东省行政执法证照片要求及图像处理方法
  • 实训day40(8.30)
  • 数据结构-广义表
  • 在uni-app中使用SQLite
  • office套件打开时 提示操作系统当前的配置不能运行此应用程序
  • VS2022使用指定的LLVM版本
  • windows 环境下安装OpenCV For Java
  • 一些可能很有用的矩阵知识
  • 新手c语言讲解及题目分享(十)——数组专项练习
  • 免费GPU平台教程,助力你的AI, pytorch tensorflow 支持cuda
  • Vue3组件通信概览
  • [Raspberry Pi]如何利用docker執行motioneye,並利用Line Notify取得即時通知和照片?
  • 2024车牌识别系统十大品牌发布,车牌智能识别系统品牌哪家好?
  • 【408 数据结构】第1章绪论
  • 开发基础软件安装地址(持续更新中)
  • Spring Boot实战:运用享元模式优化微服务间共享资源
  • 使用VM创建centos7环境