我正在创建一个使用REST API来下载文件的应用程序。当您点击该文件时,API会立即返回该文件。因此,我使用以下逻辑来获取文件:
downloadFile(file) {
this.service.downloadFile(file.id).subscribe((fileData) => {
const a = document.createElement('a');
document.body.appendChild(a);
const blob = new Blob([data], { type: data.type });
const url = window.URL.createObjectURL(blob);
a.href = url;
a.download = file.name;
a.click();
window.URL.revokeObjectURL(url);
});
}
上面的代码运行完美。但是,当整个文件下载完毕后,它将在浏览器中下载文件,即您不会在浏览器中看到文件下载的进度(通常在Chrome中下载文件时的浏览方式)。您可以在控制台的“网络”选项卡中看到其正在下载文件,但仅在下载整个文件后才会显示。 有人可以告诉我如何强制将其下载到浏览器中以显示进度吗?
答案 0 :(得分:0)
您可以使用http.request
方法
getFile():Observable<ArrayBuffer>{
return this.http.request('GET', 'https://raw.githubusercontent.com/bradleyflood/tool-sample-testing-images/master/jpg-beach-1900x1250-450kb.jpg',
{
observe: 'events',
reportProgress: true,
responseType: 'arraybuffer'
}).
map(event => this.getEventMessage(event))
.filter(f => f != null);
}
private getEventMessage(event: HttpEvent<any>) : ArrayBuffer {
switch (event.type) {
case HttpEventType.DownloadProgress:
// download in progress compute and show the % done:
const percentDone = Math.round(100 * event.loaded / event.total);
console.log(event, percentDone);
return null;
case HttpEventType.Response:
//download finished return arraybody
return event.body;
default:
return null;
}
}
通过在请求中设置observe: 'events'
选项,您可以查看所有请求事件,包括下载进度HttpEvent.DownloadProgress
。
请求完成后,您将获得一个HttpEvent.Response
,其中包含包含下载文件的arraybuffer(作为主体成员)。