我一直在使用FileSaver.js下载 PDF / Excel 附件。虽然此方法适用于所有其他设备,但我无法在iOS设备10 +中下载附件。
const wbout: string = XLSX.write(wb, { bookType: 'xlsx', type: 'array' });
saveAs(new Blob([wbout],{type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'}), "My List" + '.xlsx');
我不想在新标签页中打开附件 - 相反,它应该执行其正常功能,即下载文件。
我已经提到了https://github.com/eligrey/FileSaver.js/issues/375,但仍无法找到解决办法。