如何在play框架中使用PDF模块中的选项

发布于 2024-12-21 06:12:32 字数 424 浏览 0 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风也等你 2024-12-28 06:12:32

你的代码是错误的。做法:

 public static void renderPDFHeader()
 {
    //calculate the contents for the pdf
    String var1, var2;

    //create Options helper
    PDF.Options options = new PDF.Options();
    options.filename="myfile.pdf";
    //etc...

    //render
    renderPdf(options, var1, var2); //note it's renderPDF, not render
 }

您得到找不到模板很可能是因为 Play 尝试查找“/views/design/renderPdfHeader.html”但它不在那里

Your code is wrong. Do:

 public static void renderPDFHeader()
 {
    //calculate the contents for the pdf
    String var1, var2;

    //create Options helper
    PDF.Options options = new PDF.Options();
    options.filename="myfile.pdf";
    //etc...

    //render
    renderPdf(options, var1, var2); //note it's renderPDF, not render
 }

You get the Template not found most likely becuase Play tries to find "/views/design/renderPdfHeader.html" and it's not there

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文