jsPDF中的分隔文本输出

时间:2017-01-19 16:53:45

标签: jspdf

是否可以使用jsPDF界定文本的长度?

例如:我需要在每个项目上写一些点:

Apples: .............................. $10.00
Grapefruit: .......................... $20.00

我目前的代码:

doc.text(x, y, product + ".............................." + value); 

这给出了以下结果:

Apples: .............................. $10.00
Grapefruit: .............................. $20.00

1 个答案:

答案 0 :(得分:0)

这是一个重复点“n”次以使长度相等的实现。在这里,我计算了长度,并从有限的长度减去了它,并添加了点数和结果值。

doc.text(x, y, product + " " + Array(44-(product.length+value.length)).join(".") + " " + value);