jsPDF在Chrome中不起作用,只有Firefox&的Safari

时间:2015-09-24 13:49:32

标签: javascript google-chrome pdf jspdf html2canvas

我正在尝试使用jsPDF将应用程序导出为PDF。浏览网页后,在这里抓取一行代码,在那里找到一个部分 - 我已经设法让它正常工作...... 有点

适用于Firefox& Safari,但不在Chrome中。

使用的JS-Files(来自jsPDF)。也许是矫枉过正。和Jquery一起。

    <script type="text/javascript" src="PDF/standard_fonts_metrics.js"></script> 
    <script type="text/javascript" src="PDF/split_text_to_size.js"></script>               
    <script type="text/javascript" src="PDF/from_html.js"></script>
    <script type="text/javascript" src="PDF/addhtml.js"></script>               
    <script type="text/javascript" src="PDF/addimage.js"></script>

我正在使用的代码是:

<script type="text/javascript">
function demoFromHTML() {
  $('#listAreaPDF').css("display", "block");

  var pdf = new jsPDF('p', 'pt', 'letter');
  // source can be HTML-formatted string, or a reference
  // to an actual DOM element from which the text will be scraped.
  source = $('#listAreaPDF')[0];

  pdf.setFontSize(24);
  pdf.text(35, 40, "PDF Title here");

  pdf.setFontSize(10);
  pdf.text(500, 40, "Company Name AB");

  // we support special element handlers. Register them with jQuery-style 
  // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
  // There is no support for any other type of selectors 
  // (class, of compound) at this time.
  specialElementHandlers = {
    // element with id of "bypass" - jQuery style selector
    '#bypassme': function (element, renderer) {
      // true = "handled elsewhere, bypass text extraction"
      return true
    }
  };
  margins = {
    top: 80,
    bottom: 60,
    left: 40,
    width: 522
  };


  // all coords and widths are in jsPDF instance's declared units
  // 'inches' in this case
  pdf.fromHTML(
    source, // HTML string or DOM elem ref.
    margins.left, // x coord
    margins.top, {// y coord
      'width': margins.width, // max width of content on PDF
      'elementHandlers': specialElementHandlers
    },
    function (dispose) {
      html2canvas($("#presentationArea"), {
        onrendered: function (canvas) {
          var imgData = canvas.toDataURL(
            'image/png');

          pdf.addImage(imgData, 'PNG', 20, 300);
          pdf.save('Test.pdf');
        }
      });
      // dispose: object with X, Y of the last line add to the PDF 
      // this allow the insertion of new lines after html
      // pdf.save('Test.pdf');
    },
    margins
  );
  $('#listAreaPDF').css("display", "none");
}
</script>

Credit for the code found here.只需要很少的小改动以适应我的应用程序,我就添加了一个与html2canvas的连接,将图像从我的应用程序中取出并将其放入PDF中。哪个实际上工作正常 - 在Safari和Firefox中。

在Chrome中点击并激活此功能时,我甚至没有收到空白PDF,我什么都没得到。甚至没有生成弹出窗口或页面。

Firefox&amp; Safari的工作原理可能是什么,但不是Chrome? 我还没有尝试过Internet Explorer,但我没有屏住呼吸。 如果你知道一种工作方式,我就是全力以赴。

欢呼您提供任何帮助或建议。

1 个答案:

答案 0 :(得分:4)

此问题可能与Chrome的deprecation of top-frame navigation有关。

删除:内容启动了对数据URL的顶部框架导航(已删除)

  

我们打算使用标签,window.open,window.location和类似机制阻止网页加载数据:顶部框架中的URL。

     

伪URL,例如数据:通常会使用户感到困惑。由于不熟悉,这些方案被广泛用于欺骗和网络钓鱼攻击。理想情况下,浏览Web的用户只能以两种众所周知的方案(http和https)结束。

     

在M58中已弃用

     

在M60中移除

https://www.chromestatus.com/feature/5669602927312896

为此,一种可能的解决方案是,如上述Google网上论坛线程中所述,使用iFrame。