问题描述:
在Angular 9中,使用HttpClient发送POST请求时,无法获取到blob响应。
解决方法:
在发送POST请求时,需要设置responseType为'blob',以告诉HttpClient返回的是一个blob类型的响应。
示例代码:
import { HttpClient } from '@angular/common/http';
constructor(private http: HttpClient) { }
...
downloadFile(url: string) {
return this.http.post(url, { responseType: 'blob' });
}
在上述示例中,downloadFile方法发送了一个POST请求,并且设置了responseType为'blob'。这样就可以获取到一个blob类型的响应。
使用示例:
this.downloadFile('https://example.com/file').subscribe((response: Blob) => {
// 处理blob响应
const blob = new Blob([response], { type: 'application/octet-stream' });
const url = window.URL.createObjectURL(blob);
window.open(url);
});
在上述示例中,我们使用subscribe方法订阅了下载文件的响应。在订阅回调函数中,我们可以处理blob响应。这里我们创建了一个Blob对象,并且通过URL.createObjectURL方法将其转换为一个可下载的URL,然后使用window.open方法在新窗口中打开该URL。
注意事项: