超过 1 页的 PDF 文件未显示在 iframe 中



我正在访问base64中超过1页的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 为空白。请帮我解决这个问题。提前谢谢。

修改代码

<iframe ng-if="fileExtension == 'pdf'" src="data:application/pdf;base64,{{attachment}}" style="height: 100%;width: 100%" scrolling="auto">
</iframe>