Jinja2 - 给定 2 个模板(作为字符串)如何渲染一个扩展另一个的模板?

发布于 2024-09-30 00:28:40 字数 378 浏览 7 评论 0原文

我正在制作一个适用于 Jinja2 模板的简单脚本。现在它只是手动从磁盘读取文件,即没有 Jinja Loaders。我有 2 个字符串(AB),代表 2 个模板。我想让一个模板 (B) 继承另一个模板 (A),即我有 {% block body %}{% endblock %} 在 A 中,我想让 body 块成为 B 的内容。如何获得它的渲染输出?

通常我会在 B 中使用 {% extends 'filename' %} 并且它会使用正确的文件名,但是我没有文件名(本身)对于A。

I'm making a simple script that works on Jinja2 templates. Right now it's just reading files in from disk manually, i.e. no Jinja Loaders. I have 2 strings (A and B), representing 2 templates. I want to make one template (B) inherit from the other (A), i.e. I have {% block body %}{% endblock %} in A, and I want to make the body block be the contents of B. How can I get the rendered output of this?

Normally I'd use {% extends 'filename' %} in B and it'd use the right one, however I don't have the filename (per se) for A.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

平安喜乐 2024-10-07 00:28:40

您最好的选择可能是使用不同的模板加载器。看看 DictLoaderFunctionLoader,或者尝试编写自己的模板加载器。

Your best bet probably to use a different template loader. Take a look at DictLoader and FunctionLoader, or try your hand a writing your own template loader.

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