Unable to view 'Content-Disposition' headers in Angular4 GET response
问题 I am trying to download a pdf file in my Angular app. The server (JBoss) serves a file with Content-type : application/pdf and Content- Disposition header set to attachment. I can see these headers quite well in fiddler response. However in my subscribe callback I can't see the same headers. Instead the header contains two property namely: _headers and _normalizedHeaders While making the GET call. I do: `this._http.get(url, {responseType: 'arraybuffer'}).subscribe((file: Response)=>{ //Cant