Jinja2 - 给定 2 个模板(作为字符串)如何渲染一个扩展另一个的模板?
我正在制作一个适用于 Jinja2 模板的简单脚本。现在它只是手动从磁盘读取文件,即没有 Jinja Loaders。我有 2 个字符串(A
和 B
),代表 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您最好的选择可能是使用不同的模板加载器。看看 DictLoader 和 FunctionLoader,或者尝试编写自己的模板加载器。
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.