- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将宏与 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/
我是一名优秀的程序员,十分优秀!