如何使用 StringTemplate 进行标准布局?
使用 StringTemplate,拥有标准布局模板的正确方法是什么,例如:
<head>
..
</head>
<html>
$body()$
</html>
我可以在哪里从应用程序设置正文模板,以便我使用的每个模板都使用此基本布局?
谢谢。
With StringTemplate, what is the proper way to have a standard layout template such as:
<head>
..
</head>
<html>
$body()$
</html>
Where I can set the body template from my application, so that every template I use uses this fundamental layout?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现它隐藏在文档中:
http://www.antlr.org/wiki/display/ST/StringTemplate+2.2+Documentation< /a>
所以我的主布局模板现在看起来像这样:
...我将子模板的名称作为属性传递给它。
I found it hiding in the documentation:
http://www.antlr.org/wiki/display/ST/StringTemplate+2.2+Documentation
So my main layout template now looks like this:
...to which I pass the subtemplate's name as an attribute.