JSPDF:Genearte pdf来自数组对象并显示为Lables

时间:2017-03-20 10:10:43

标签: jspdf jspdf-autotable

我想从数组的对象生成PDF,并在图像中显示这样的显示。PDF data in Lable view。我可以实现这一点,而我的输出是行的。

  htmlStr += '<table id="customers" class="table-wide">';
htmlStr += '<thead ></thead>';
htmlStr += '<tbody ></tbodyid>';
htmlStr += '</table>';
this.html = $(htmlStr);

1 个答案:

答案 0 :(得分:1)

我认为你必须自己做。 jsPDF-Autotable不适合这种情况。以下是划痕,它不是一个完美的解决方案。请进一步处理。

实际上我们要创建网格卡,直到页面宽度和高度。

如果高度达到,请添加新页面color: #DB0000

如果宽度达到,请添加新行。

doc.addPage()

供参考https://jsfiddle.net/Purushoth/jodfkz59/