如何使用Chameleon进行模板继承?

时间:2012-06-13 11:00:13

标签: python pyramid chameleon template-metal

我正在使用最新的Pyramid来构建一个Web应用程序。不知怎的,我们已经开始使用Chameleon作为模板引擎。我之前使用过Mako,创建基本模板非常简单。变色龙也可以吗?

我试图查看文档,但我似乎无法找到一个简单的解决方案。

3 个答案:

答案 0 :(得分:15)

使用Chameleon> = 2.7.0,您可以使用“加载”TALES表达式。例如:

main.pt:

<html>
<head>
    <div metal:define-slot="head"></div>
</head>
<body>
    <ul id="menu">
        <li><a href="">Item 1</a></li>
        <li><a href="">Item 2</a></li>
        <li><a href="">Item 3</a></li>
    </ul>
    <div metal:define-slot="content"></div>
</body>
</html>

my_view.pt:

<html metal:use-macro="load: main.pt">

<div metal:fill-slot="content">
    <p>Bonjour tout le monde.</p>
</div>

</html>

答案 1 :(得分:2)

在Chameleon之前使用的另一个选项是从文件系统加载模板的能力,就是将“基础”模板作为参数传递。

为简化起见,我经常将这些内容包装成“主题”对象:

class Theme(object):

    def __init__(self, context, request):
        self.context = context
        self.request = request

    layout_fn = 'templates/layout.pt'

    @property
    def layout(self):
        macro_template = get_template(self.layout_fn)
        return macro_template

    @property
    def logged_in_user_id(self):
        """
        Returns the ID of the current user
        """
        return authenticated_userid(self.request)

然后可以像这样使用:

def someview(context, request):
   theme = Theme(context, request)
   ...
   return { "theme": theme }

然后可以在模板中使用:

<html
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:tal="http://xml.zope.org/namespaces/tal"
    xmlns:metal="http://xml.zope.org/namespaces/metal"
    metal:use-macro="theme.layout.macros['master']">
<body>
    <metal:header fill-slot="header">
        ...
    </metal:header>
    <metal:main fill-slot="main">
        ...
    </metal:main>
</body>
</html>

答案 2 :(得分:0)

在此处制作模板:

<proj>/<proj>/templates/base.pt

内容:

<html>
  <body>
    <div metal:define-slot="content"></div> 
  </body>
</html>

在此处使用模板:

<proj>/<proj>/templates/about_us.pt

插入内容:

<div metal:use-macro="load: base.pt">
    <div metal:fill-slot="content">
        <p>Hello World.</p>
    </div>
</div>