gpt4 book ai didi

javascript - 排除 jsPDF AutoTable 中的列

转载 作者:行者123 更新时间:2023-11-30 07:55:42 24 4
gpt4 key购买 nike

有人使用 jsPDF autoTable 从 Table 中排除 pdf 结果中的列的经验..Would appriciate 一点帮助。

最佳答案

无论如何,在深入研究 API 和示例之后。我找到了解决办法。带有 autoTable 的 jsPDF 对于初学者来说有点棘手,所以对于那些在不久的将来会遇到这种困境的人来说。方法如下:

var tTB = document.getElementById("myTable");
var atTB = doc.autoTableHtmlToJson(tTB, true);
var cols = atTB.columns;
//here you are going to set which column you will truncate. Moreover, .splice(index number of the column(your start), the number of columns you will exclude)
cols.splice(4,1);
doc.text("My Test Table", 40, 60);
doc.autoPrint();

干杯!

关于javascript - 排除 jsPDF AutoTable 中的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40254744/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com