在我的角度4应用程序中,我想显示PDF,我发现了这个好方法:PDF Blob is not showing content, Angular 2

但是通过这种方式,我在浏览器中打开了一个新选项卡,例如在我的情况下,这个新的弹出窗口被adblock阻止了 . 那么有一种方法可以在当前标签中显示PDF吗?还有什么可以避免adblock?

Component.ts

print() {
    this.ticketBundleService.downloadPDF().subscribe(
      (res) => {
        const fileURL = URL.createObjectURL(res);
        window.open(fileURL);
      }
    );
  }

Service.ts

downloadPDF(): any {
    return this.http.get('http://......', {responseType: 'blob'}).map(
      (res) => {
        return new Blob([res], {type: 'application/pdf'})
      })
  }