我正在使用闭包模板,但我不知道如何让一个主模板带有常见的东西,例如徽标,当我渲染其他模板时,它们将在主模板中渲染。我想为每个模板创建一个 servlet。
问问题
595 次
1 回答
3
你可以做的是这样的:
从其他模板中调用主模板。在其他模板中,您可以定义主模板的参数。
例如:
{namespace com.example}
/**
* Says hello to a person (or to the world if no person is given).
* @param title the page title
* @param body the page body
*/
{template .base}
<html>
<head>
<title>{$title}</title>
</head>
<body>
{$body}
</body>
</html>
{/template}
/**
* Search Result
*/
{template .servlet1}
{call base}
{param title}
Example Title
{/param}
{param body}
Here comes my body!
{/param}
{/call}
{/template}
当然,如果你想要一个灵活且完整的 html 页面,你最终会得到很多参数。但这应该会引导你。
于 2011-12-14T16:10:14.917 回答