gpt4 book ai didi

javascript - 如何在 js.pdf 中添加页码

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:44:39 40 4
gpt4 key购买 nike

我想在我的pdf文档中添加页码,但是我不能

这是我的pdf输出

enter image description here

这是我的js代码

$('#cmd').click(function () {
var table = tableToJson($('#StudentInfoListTable').get(0))

var doc = new jsPDF('p', 'pt', 'a4', true);

doc.cellInitialize();
doc.setFontSize(7);
doc.text(200, 30, 'Leveraging ICT for Growth, Employment and Governance Project.');

$.each(table, function (i, row){
doc.setFontSize(7);

if(i>1 && i%3==0)
{

doc.addPage();
doc.cellInitialize();
doc.text(200, 30, 'Leveraging ICT for Growth, Employment and Governance Project.');
}

$.each(row, function (j, cell){
if(j=='name')
{
doc.cell(10, 50,100, 30, cell, i);
}
else if(j=='email')
{
doc.cell(10, 50,130, 30, cell, i);
}
else if(j=='track')
{
doc.cell(10, 50,40, 30, cell, i);
}
else if(j=='s.s.croll')
{
doc.cell(10, 50,51, 30, cell, i);
}
else if(j=='h.s.croll')
{
doc.cell(10, 50,51, 30, cell, i);
}
else
{
doc.cell(10, 50,70, 30, cell, i); // 2nd parameter=top margin,1st=left margin 3rd=row cell width 4th=Row height
}

})


})



doc.save('sample-file.pdf');
});

在js.pdf中有没有页码的内置函数?

最佳答案

尝试

doc.cellAddPage();

代替

doc.addPage();

关于javascript - 如何在 js.pdf 中添加页码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21509862/

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