我想将REST响应复制到blob中但我无法做到,因为blob()
和arrayBuffer()
尚未在响应对象中实现。 Response Body是一个私有变量。
...
return this.http.get(url, {params: params, headers: headers})
.map(res => {
// can't access _body because it is private
// no method appears to exist to get to the _body without modification
new Blob([res._body], {type: res.headers.get('Content-Type')});
})
.catch(this.log);
...
在实施这些方法之前,我是否可以使用解决方案?
答案 0 :(得分:48)
这是一个更简单的解决方案,可以作为一个字符串访问身体,我在任何地方都没有记录:
let body = res.text()
答案 1 :(得分:10)
加入@StudioLE。您可以使用json()方法将数据作为json返回。
let body = res.json()
答案 2 :(得分:6)
由于我在遇到同样的问题时发现了这个问题(并且Angular的文档在今天没有更新),您现在可以使用:
let blob = new Blob([response.arrayBuffer()], { type: contentType });
如果您出于某种原因使用旧版Angular 2,则另一种解决方法是:
let blob = new Blob([(<any> response)._body], { type: contentType });
答案 3 :(得分:2)
设置requestoptions的responseType。这将使response.blob()方法起作用。
let headers = this.getAuthorizationHeader();
headers.append("Accept", "application/octet-stream");
return this.http
.get(url, new RequestOptions({ headers: headers, responseType: ResponseContentType.Blob }))
.map((res: Response): Blob => {
return res.ok ? res.blob() : undefined;
});
答案 4 :(得分:1)