Angular7 Httpclient GET请求不允许设置{responsetype:'application / pdf'}我尝试了blob,bytearray等的组合。 将其视为JSON并在JSON.parse上失败
我尝试了将diff组合用作arraybuffer,blob
let requestOptions: Object = {
/* angualr 7 is not allowing this for some reason */
responseType: 'application/pdf'
}
/* not working */
return this.http.get<any>(this.streamURL , requestOptions);
请我需要一种以PDF而不是JSON格式读取响应的方法。