Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于角度的pdf查看器,我正在使用ngx-extended-pdf-viewer:10.0.0-alpha.8 我在其中一个组件(PDFViewerComponent)中使用该pdf,如果我在项目启动/页面刷新后打开该组件完美运行。但是当我打开另一个组件并在 1/2 分钟后导航到 PDFViewerComponent 时,它会显示如下:
控制台上没有关于此的错误。谢谢..
有同样的问题,我通过向查看器添加 *ngif 来解决它,以便仅在加载 pdf 时查看它。
<ngx-extended-pdf-viewer *ngIf="provisionService.displayPdfDialog" [src]="provisionService.pdfFile" [useBrowserLocale]="true" [minifiedJSLibraries]="false"> </ngx-extended-pdf-viewer>