2
I have an API that returns me a PDF file.
I want to make the angle hit this route and force the download of the PDF file.
Today I do so:
var blob = new Blob([arquivo], {type: "application/pdf"});
saveAs(blob, 'arquivo.pdf');
The download works, but the pdf file comes blank. If I hit the route manually, the file comes complete.
With this method you can download in IE?
– Guilherme Patriarca
@Guilhermepatriarch from IE 10 only up.
– Marcos