更改对象pdf的标题

时间:2019-03-26 07:08:03

标签: angular ionic4

我正在从API获取pdf作为数据流。我将其转换为Blob,然后在Object标记中将其打开。 PDF正在打开,但标题类似于a2e08787-0376-430b-b7c8-3581b8dd3900。我可以更改它还是使其消失?我知道我可以禁用工具栏,但是这将禁用其他功能,例如页面导航和打印。

<ion-row class="fullScreen">
  <ion-col>
    <object class="fullScreen" id="pdfframe" [data]="pdfSrc" type="application/pdf"></object>
  </ion-col>
</ion-row>
downloadPDF(id) {

    this._service.downloadFileWithRx(id).subscribe(doc => {
      if (doc.type == 'application/pdf') {
        let url = window.URL.createObjectURL(doc);
        console.log(url);
        this.pdfSrc = this.sanitizer.bypassSecurityTrustResourceUrl(url);
      }

    },
      error => console.log(error)
    )

  }

  

enter image description here

0 个答案:

没有答案