我目前正在使用Symfony2 for PHP和SpraedPDFGeneratorBundle,它使用Flying Saucer生成PDF。
我需要让用户输入一个起始编号页面来打印带有编号页面的表单。如果我做一些简单的事情
@page {
counter-increment: page 5;
...
@top-right {
content: counter(page);
};
}
生成的PDF不会将每个页面增加5个。我这样做是为了测试功能,因为目标代码是
@page {
...
@top-right {
content: counter(page);
};
}
@page:first {
counter-increment: page {{ startingPage-1 }}; /* The last part is Twig code for printing the starting page dynamically */
}
为什么会这样?