如何在IE中显示base64编码的pdf?

如何在IE中显示base64编码的pdf?,pdf,base64,Pdf,Base64,我正在尝试显示pdf文件,该文件在html中使用base64编码嵌入 下面是我为此编写的代码。pdf文件显示在chrome和firefox中,但不显示在internet explorer中。 你知道如何让它在IE中工作吗 <object data="data:application/pdf;base64,Base64String =" type="application/pdf" width="100%" height="100%"/> 我认为正确的答案是你不能。 IE中的Bas

我正在尝试显示pdf文件,该文件在html中使用base64编码嵌入

下面是我为此编写的代码。pdf文件显示在chrome和firefox中,但不显示在internet explorer中。 你知道如何让它在IE中工作吗

<object data="data:application/pdf;base64,Base64String =" type="application/pdf" width="100%" height="100%"/>

我认为正确的答案是你不能。

IE中的Base64编码仅适用于某些图像类型,而不适用于PDF。

可能重复的