I have Angular 2 and web API application, I am trying to download pdf using Web API. Below is the sample code. When I click on download button a get request is sent to web API which in response send file stream, typescript converts this stream to PDF
I have a angular code like this, GenarateReportPDF() { var ProjectID = localStorage.getItem('ProjectID'); this._reportService.getReportPDF() .subscribe( response => { var blob = new Blob([blob], {type: 'application/pdf'});...
Oct 30, 2018N