如何在新标签页中立即显示带有 pdf 内容的 Blob 或使用 iframe 内联显示它?
在 chrome 和 FF 我可以使用这样的东西
var url = URL.createObjectURL(blob);
$('#uplFrame').attr('src', url);
Run Code Online (Sandbox Code Playgroud)
但在 IE 中不起作用...我在网上读到 IE 正在使用以下内容处理 blob
window.navigator.msSaveOrOpenBlob(blob, "filename");
Run Code Online (Sandbox Code Playgroud)
但是,这将询问用户是否要在新窗口中保存或打开文件。是否可以让代码自动打开 blob?
或者是否有适用于 IE 的“createObjectURL”的类似解决方案?