gpt4 book ai didi

excel - Angular 6 下载 API excel 文件

转载 作者:行者123 更新时间:2023-12-03 01:31:57 45 4
gpt4 key购买 nike

我想下载响应的 Excel 文件:这就是我所做的:

download(type: string) {
this.http.get(`download_template?template=${type}`).subscribe(data => {});
}

这就是我得到的:

最佳答案

做过类似的事情...这是我下面的方法,它有效。

安装 npm i --save file-saver

服务

download(type: string) {
return this.http.get(`download_template?template=${type}`, {responseType: 'blob'});
}

组件

...
import { saveAs } from 'file-saver';
...


this._service.download(type: string).subscribe(res => {
saveAs(res, 'YourFileName.xlsx',
{ type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' })

}}

关于excel - Angular 6 下载 API excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51642963/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com