如何在play框架中使用PDF模块中的选项
我想使用 HEADER_TEMPLATE 选项。我已经给出了如下所示的内容,但播放时抛出错误“找不到模板”
public class Design extends Controller {
public static void renderPDFGen()
{
Options options = new Options();
options.HEADER_TEMPLATE = "/design/renderPDFHeader";
options.filename = "Invoice";
renderPdf(options);
}
public static void renderPDFHeader()
{
render();
}
}
可能是什么错误。
I want to user HEADER_TEMPLATE option. i have given like below but play throws an error Template not found
public class Design extends Controller {
public static void renderPDFGen()
{
Options options = new Options();
options.HEADER_TEMPLATE = "/design/renderPDFHeader";
options.filename = "Invoice";
renderPdf(options);
}
public static void renderPDFHeader()
{
render();
}
}
What could be the error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的代码是错误的。做法:
您得到找不到模板很可能是因为 Play 尝试查找“/views/design/renderPdfHeader.html”但它不在那里
Your code is wrong. Do:
You get the Template not found most likely becuase Play tries to find "/views/design/renderPdfHeader.html" and it's not there