jsPdf生成空白PDF

时间:2015-10-15 00:56:40

标签: javascript jquery angularjs jspdf

我尝试使用jsPdf生成当前HTML页面的PDF - 但是它生成了一个空白PDF。

通过ng-click调用此函数:

$scope.getPdf = function() {
    doc.fromHTML($document.outerHTML, 15, 15, {
        'width': 190,
        'elementHandlers': specialElementHandlers
    });
    doc.output("dataurlnewwindow");
}

知道我做错了什么?

1 个答案:

答案 0 :(得分:0)

文件周围的parens似乎是罪魁祸首。尝试:

$scope.getPdf = function() {
   doc.fromHTML($document.html(), 15, 15, {
    'width': 190,
    'elementHandlers': specialElementHandlers
   });
   doc.output("dataurlnewwindow");
}