使用Iframe的Angular PDF Viewer不起作用

时间:2019-05-03 16:24:49

标签: angular pdf-viewer

我们已经使用Iframe实现了pdf查看器,并且运行良好,但是最近没有做任何代码更改,它突然停止工作。

<div *ngIf="attachment.show && attachment.extension === 'pdf'">
      <iframe title="pdf-preview" [src]="attachment.url" width="700" height="500"></iframe>
    </div>

这是html代码,下面是必要的类型脚本代码

 attachment.url = attachment.attachmentFile
    ? this.sanitizer.bypassSecurityTrustResourceUrl(
        URL.createObjectURL(new Blob([new Uint8Array(attachment.attachmentFile)], { type: 'application/pdf;base64,' }))
      )
    : '';

此处 attachment.attachmentFile 是服务器端的字节数组。 谁能告诉我为什么它不起作用。 这是我得到的错误 enter image description here

0 个答案:

没有答案