Angular 2更改bytea以下载pdf

时间:2018-03-26 12:14:20

标签: angular blob

如何将bytea转换为pdf可下载文件? 目前我可以得到bytea数据。但我知道如何转换为pdf类型。我一直在网上搜索,但找不到它。提前致谢

在组件中:

downloadFile(instanceId){
  this.filestorageService.loadByInstance(instanceId).subscribe(
    obj => {

      console.log(obj)
      var data = obj.content;
      var blob = new Blob([data], { type: 'application/pdf' });
      var url= window.URL.createObjectURL(blob);
      window.open(url);
    }
  );
}

在html中:

<a href="#" (click)="downloadFile(instanceId)" >download file</a>

0 个答案:

没有答案