美文网首页
导出excel

导出excel

作者: 废弃的种子 | 来源:发表于2021-07-06 14:23 被阅读0次

    示例

    Common.downloadFile = (content, title) => {
      var a = document.createElement("a");
      var blob = new Blob([content], { type: "application/vnd.ms-excel" });
      var url = window.URL.createObjectURL(blob);
      a.href = url;
      a.download = title;
      a.click();
      a.remove();
      window.URL.revokeObjectURL(url);
    }
    //使用
     this.Common.downloadFile(res,"认证信息")
    //响应类型
    responseType: 'blob'
    

    下载方式

    https://www.cnblogs.com/zhilingege/p/8253702.html

    导出类型

    https://blog.csdn.net/chenhuaa123/article/details/81052115

    相关文章

      网友评论

          本文标题:导出excel

          本文链接:https://www.haomeiwen.com/subject/ddjgultx.html