在金字塔文档中,有一个关于UX内容的很好的教程:
我注意到的一件事是在他们正在设置的教程中,并在代码中明确地传递'全局布局'(见下文)。我认为这是不寻常的和不必要的,因为我总是只使用'load'命令,如文档中所示:
http://chameleon.repoze.org/docs/latest/
这只是个人偏好问题,还是以这种方式设置和使用'全局布局'真的有优势?
教程基础视图类:
class Layouts(object):
@reify
def global_template(self):
renderer = get_renderer("templates/global_layout.pt")
return renderer.implementation().macros['layout']
教程模板文件:
<div metal:use-macro="view.global_template">
<div metal:fill-slot="content">
<p>Home page content goes here.</p>
</div>
</div>
但在我的模板文件中我只使用:
<div metal:use-macro="load: global_layout.pt">
<div metal:fill-slot="content">
<p>Home page content goes here.</p>
</div>
</div>
答案 0 :(得分:5)
间接方式(通过视图)为您提供更大的灵活性。在一个小项目中,好处并不那么明显,但这种方法肯定会在较大的项目中得到回报。 “load:”会将你的main_template(在Zope / Plone中说话)加密到这里。通过视图,它可以来自任何地方,并且可以独立于模板进行更改。