3

我在显示我在 firebase 存储中托管的 pdf 时遇到问题,问题是在我的函数中

 download(url: string, title: string) {
    this.fileTransfer = this.transfer.create();
    this.fileTransfer
      .download(url, this.file.dataDirectory + title + ".pdf")
      .then(entry => {
        console.log("download complete: " + entry.toURL());
        this.fileOpener
          .open(entry.toURL(), "application/pdf")
          .then(() => console.log("File is opened"))
          .catch(e => console.log("Error opening file", e));
      });
  }

我指的是一个 url,这对我有用,但我需要将该 url 与一个 id 号相关联,以便它只为我带来我需要的 pdf。这是我的代码 en el html

<div class="ion-padding">
  <ion-button fill="outline" expand="block" size="small"
    (click)="
      download(
        'https://firebasestorage.googleapis.com/v0/b/myproject-67ce7.appspot.com/o/ORDEN%20DE%20COMPRA%2014766.pdf,
        'PDF'
      )
    "
    >Ver Documento PDF</ion-button
  >
</div>

但是我需要我需要带入url的id,在这种情况下是14766,但是我有其他的,我想根据那些id带上它。谢谢!!

4

0 回答 0