jsPDF 中的自动 table

Auto table in jsPDF

如何在 jsPDF 生成的 PDF 的普通主题中为 table 创建黑色边框? 我试过用

这样的风格写作
styles: {
   overflow: 'linebreak',
   border: 'solid black 1px'
}

但是没用。

我发现 solution.It 可以通过线宽和线颜色给出。

var doc = new jspdf('p','pt','a4');<br> doc.autoTable(列,行,{ header样式:{ 线宽:0.06, 线条颜色:[217, 216, 216] }, beforePageContent: header, 保证金:{top:40}, 主题:'plain', 样式:{ 溢出:'linebreak', 线宽:0.02, 线条颜色:[217, 216, 216] } }); var header = 函数(数据){ doc.setFontSize(25); doc.setTextColor(0); doc.text(this.companyname,15,15); doc.setFontStyle('normal'); }; doc.autoTableHtmlToJson(列,行); doc.save("file.pdf");