起因:ie9不支持blob方案下载导出PDF
解决方案:构建隐藏iframe进行下载和导出
if (isIE9) {
const fileHref = http://*****;
const iframe = document.createElement('iframe');
iframe.style.display = 'none';
iframe.src = fileHref;
iframe.onload = function() {
document.body.removeChild(iframe);
};
}