ПРОБЛЕМА
Моя загрузка PDF работает в Chrome, но не работает в IE 11/10/9.
В IE мне будет выдано предупреждение о безопасности, но после того, как я нажму Да, чтобы разрешить, ничего не происходит.
КОД
handleDownload = (reportLoc) => {
var path = reportLoc.item.ReportPath;
$.get("/Api/Apps/GetFileFromServer?filePath=" + path, (response) => {
this.setState({ base64EncodedPDF: response });
}).then(() => {
let a = document.createElement("a");
a.href = "data:application/octet-stream;base64," + this.state.base64EncodedPDF;
a.download = path.substring(path.lastIndexOf("\\") + 1);
a.click();
});
}
Решения, позволяющие работать в Chrome и IE?