24

我想将 REST 响应复制到 blob 中,但我无法执行某些操作,因为blob()尚未arrayBuffer()在响应对象中实现。响应正文是一个私有变量。

...
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);
...

在这些方法实施之前,有没有我可以使用的解决方案?

4

5 回答 5

49

有一个更简单的解决方案可以将正文作为字符串访问,我在任何地方都没有看到记录:

let body = res.text()
于 2017-01-01T19:02:40.507 回答
10

附加到@StudioLE。您可以使用 json() 方法以 json 格式返回数据。

let body = res.json()
于 2017-08-15T09:36:52.780 回答
6

由于我在遇到同样的问题时发现了这个问题(并且 Angular 的文档到今天还没有更新),您现在可以使用:

let blob = new Blob([response.arrayBuffer()], { type: contentType });

如果您出于某种原因使用的是旧版本的 Angular 2,另一种解决方法是:

let blob = new Blob([(<any> response)._body], { type: contentType });
于 2016-11-04T22:03:37.790 回答
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;
    });
于 2017-02-28T12:04:52.817 回答
1

在合并以下 PR 之前,我看不到其他解决方案:

虽然您有编译错误,但该字段可以在运行时使用...

于 2016-03-18T15:15:02.050 回答