File not downloading with BLOB object in iphone chrome browser File not downloading with BLOB object in iphone chrome browser google-chrome google-chrome

File not downloading with BLOB object in iphone chrome browser


there are some issue on iOS's Chrome. In my case using FileReader() solved the problem:

var reader = new FileReader();var out = new Blob([this.response], {type: 'application/pdf'});reader.onload = function(e){  window.location.href = reader.result;}reader.readAsDataURL(out);