2

使用 StringTemplate,拥有标准布局模板的正确方法是什么,例如:

<head>
..
</head>

<html>

$body()$

</html>

我可以在哪里从我的应用程序中设置正文模板,以便我使用的每个模板都使用这个基本布局?

谢谢。

4

1 回答 1

5

我发现它隐藏在文档中: http ://www.antlr.org/wiki/display/ST/StringTemplate+2.2+Documentation

“包括名称通过 expr 计算的模板。参数列表是属性分配的列表,其中每个分配的形式为属性 = expr。示例 $(whichFormat)()$ 查找 whichFormat 的值并将其用作模板名称。也可以将间接模板应用于属性。”

所以我的主要布局模板现在看起来像这样:

<head>
    <title>Sportello</title>
</head>

<html lang="en-US">
<body>
    $partials/header()$
    <section>$(body_template)()$</section>
    $partials/footer()$
</body>
</html> 

...我将子模板的名称作为属性传递给它。

于 2010-12-15T03:54:40.713 回答