如何从多个base64来源处理单个pdf文件

时间:2019-05-22 14:08:57

标签: javascript

我有一个直放站,每行都有一个pdf页面,我设法打开了一个pdf窗口,其中包含与我单击的原始页面相关的页面,现在我需要处理一个包含该直放站中所有页面的pdf文件,我设法在后端执行了此操作,因此我将所有页面存储在一个列表中并进行了序列化,但是我希望使用javascript来实现,以下是我打开单页pdf的代码

function printThisPdf() {
        var base64Str;

  $('.ContentGrid table input:checkbox:checked').each(function () {
       base64Str =  
       $(this).closest('tr').find('img').attr('src').split('base64,'[1];
                                                                   }
   );

  console.log(base64Str); 
  let pdfWindow = window.open("");   
  pdfWindow.document.write("<iframe  src='data:application/pdf;base64, " + 
  encodeURI(base64Str) + "'></iframe>");


    }

0 个答案:

没有答案