如何将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>