如何使用Angular 6将mySql中的Blob转换为可读的Pdf并进行查看

时间:2019-05-13 08:10:47

标签: mysql spring-mvc angular6

有没有一种方法可以借助Angular 6转换和查看MYSQL的Long BLOB列中存储的PDF文件? (后端:Spring MVC和前端:Angular6)

     .get('api/load',{ responseType: 'text'}).subscribe(data=>{
      this.pdf_ = data;
      console.log('Pdf is '+ data);
      this.pdfViewer = new File([this.pdf_], 'One.pdf', { 
      type: 'application/pdf', lastModified:Date.now()}); 
      console.log(' PDF is'+this.pdfViewer);

我得到的输出是Pdf是[]

0 个答案:

没有答案