我正在base64中访问一页以上的pdf文件,并使用iframe进行显示。下面是我在iframe中显示pdf文件的代码
<div style="padding: 15px 0px 15px 0px;height: 100%;width: 100%">
<iframe ng-if="fileExtension == 'pdf'" src="data:application/pdf;base64,{{attachment}}" style="height: 100%;width: 100%" >
</iframe>
</div>
对于超过1页的pdf文件,iframe变为空白。请为此提供帮助。谢谢。
答案 0 :(得分:0)
修改代码
<iframe ng-if="fileExtension == 'pdf'" src="data:application/pdf;base64,{{attachment}}" style="height: 100%;width: 100%" scrolling="auto">
</iframe>