是否可以从ie9中的字节数组生成pdf并在新窗口中打开pdf?我目前正在使用Blob
,IE9不支持(当然)。我目前正在寻找另一种方法。如果这不可能,有没有办法至少提示用户打开/保存文件?这是我打开pdf的当前代码:
this.$http.get(this._apiBase + "/Disclosures/View/" + disclosureId, {responseType: 'arraybuffer'}).success((data) => {
var file = new Blob([data], { type: 'application/pdf' });
var fileUrl = URL.createObjectURL(file);
window.open(fileUrl);
});