gpt4 book ai didi

macros - 如何将宏与 Pyramid/ZPT(变色龙)一起使用

转载 作者:行者123 更新时间:2023-12-02 06:29:16 27 4
gpt4 key购买 nike

我想将宏与 Pyramid +ZPT引擎(Chameleon)一起使用。

文档说“单个页面模板可以容纳多个宏”。 http://chameleon.readthedocs.org/en/latest/reference.html#macros-metal

这样我就定义了一个文件 macros.pt :

<div metal:define-macro="step-0">
<p>This is step 0</p>
</div>
<div metal:define-macro="step-1">
<p>This is step 1</p>
</div>

和全局模板 main_template.pt所有定义槽的 html 内容 content .

以及我的 View 模板 progress.pt它使用 main_template.pt填写槽位:

<html metal:use-macro="load: main_template.pt">
<div metal:fill-slot="content">
...
<div metal:use-macro="step-0"></div>
...
</div>
</html>

到目前为止,我痛苦地发现,我不能只是说 use-macro="main_template.pt"因为 Chameleon 不会像 Zope 那样自动加载模板。因此我必须添加 load:之前的片段。

来到use-macro="step-0" 。这会引发 step-0 的名称错误。我尝试预加载macros.pt类似于 <tal:block tal:define="compile load: macros.pt" />但这没有帮助。

如何使用宏摘要文件中收集的宏?

最佳答案

要在 Pyramid 中使用 ZPT 宏,您需要通过将宏模板甚至宏本身传递到渲染模板(摘自文档)来使宏模板本身可用于渲染模板。

from pyramid.renderers import get_renderer
from pyramid.view import view_config

@view_config(renderer='templates/progress.pt')
def my_view(request):
snippets = get_renderer('templates/macros.pt').implementation()
main = get_renderer('templates/main_template.pt').implementation()
return {'main':main,'snippets':snippets}

在渲染器将使用的模板中,您应该像这样引用宏。我假设 main_template.pt 中包含插槽“content”的宏名为“global_layout”。将其更改为您的名字。

<html metal:use-macro="main.macros['global_layout']">
<div metal:fill-slot="content">
...
<div metal:use-macro="snippets.macros['step-0']"></div>
...
</div>
</html>

对模板内宏的引用如下所示:

<div metal:use-macro="template.macros['step-0']">
<div metal:fill-slot="content">
added your content
</div>
</div>
<div metal:define-macro="step-0">
a placeholder for your content
<div metal:define-slot="content">
</div>
</div>

要获取模板内的所有宏,以便将它们在 View 内传递到呈现的模板中,请将此行添加到第一个代码示例并扩展返回的字典。

macros = get_renderer('templates/main_template.pt').implementation().macros

我可以解释更多,但请查看文档。这里描述了一个像上面这样的简单案例。

完整的教程也介绍了这个主题。第二个链接将增加您的知识。

之后 Pyramid 文档将提供更多详细信息。欢迎来到 Pyramid 。

关于macros - 如何将宏与 Pyramid/ZPT(变色龙)一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15928186/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com