I got the following PDF stream from a server:
How can this stream be read in AngularJS? I tried to open this as a PDF file in a new window by using the following code:
.success(function(data) {
window.open("data:application/pdf," + escape(data));
});
But I'm unable to see the content in opened window.
I achieved this by changing my controller code
$http.get('/retrievePDFFiles', {responseType: 'arraybuffer'})
.success(function (data) {
var file = new Blob([data], {type: 'application/pdf'});
var fileURL = URL.createObjectURL(file);
window.open(fileURL);
});