我尝试从api下载image(png)。我的问题是,由于某种原因,ionic/angular仅接受json文件。

return this.http.get(this.authKeys.serverURL, {headers: this.header, responseType: ResponseContentType.Blob});

发生以下错误:
 Argument of type '{ headers: any; responseType: ResponseContentType.Blob; }' is not assignable to parameter of type '{ headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: "body"; params?: Ht...'.   Types of property 'responseType' are incompatible.     Type 'ResponseContentType.Blob' is not assignable to type '"json"'.

由于某种原因,只允许json类型的响应...

最佳答案

responseType 保存字符串值。因此,您应该传递这些值中的任何一个

'arraybuffer' | 'blob' | 'json' | 'text';

在较早版本的Angular 2中,该API旨在预期responseTypecheck here的枚举值

关于Angular HttpClient ResponseTyp错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49118855/

10-09 15:16