码迷,mamicode.com
首页 > 其他好文 > 详细

Angular5 UI post 请求 输出 文件下载

时间:2018-10-18 16:53:48      阅读:470      评论:0      收藏:0      [点我收藏+]

标签:isp   nload   angular   技术   ref   技术分享   time()   click   col   

技术分享图片
  this.httpClient.post(url1, JSON.parse(data1) , {responseType: blob}).subscribe(data => {
            const link = document.createElement(a);
            const blob = new Blob([data], {type: application/vnd.ms-excel});
            link.setAttribute(href, window.URL.createObjectURL(blob));
            link.setAttribute(download, Inventory + new Date().getTime() + .xls);
            link.style.visibility = hidden;
            document.body.appendChild(link);
            link.click();
            document.body.removeChild(link);
        });
    }
View Code

 

Angular5 UI post 请求 输出 文件下载

标签:isp   nload   angular   技术   ref   技术分享   time()   click   col   

原文地址:https://www.cnblogs.com/lshan/p/9810032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!