【发布时间】:2018-03-05 20:25:22
【问题描述】:
我尝试从 api 下载图像(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 类型的响应...
【问题讨论】:
标签: angular http ionic-framework httpclient