Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
您应该使用以下语法:
<ul> $orders: {order| <li>Order $order.OrderIdlt;/li> }$ </ul>
有关此功能的文档确实很难找到,我找到了一些信息此处(搜索管道符号 |)。
You should use the following syntax:
The documentation about this feature is really hard to find, I found some info here (search for the pipe symbol |).
这对我也有用。 如果您从 Antlr 作为 StringTemplateGroup 调用 StringTemplate,则语法略有不同。 将 $ 替换为 <>。
group DTO; assign1(m, attributes) ::= << package demo; import java.io.Serializable; public class <m> implements Serializable { public <m>() { super(); } <attributes : {attribute | protected <attribute.type> <attribute.name>; public <attribute.type> get<attribute.name>() { return <attribute.name>; } public void set<attribute.name>(<attribute.type> <attribute.name>) { this.<attribute.name> = <attribute.name>; } }> } >>
That works for me also. If you are calling StringTemplate from Antlr as a StringTemplateGroup, the syntax is a little different. Replace $ with <>.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
您应该使用以下语法:
有关此功能的文档确实很难找到,我找到了一些信息此处(搜索管道符号 |)。
You should use the following syntax:
The documentation about this feature is really hard to find, I found some info here (search for the pipe symbol |).
这对我也有用。 如果您从 Antlr 作为 StringTemplateGroup 调用 StringTemplate,则语法略有不同。 将 $ 替换为 <>。
That works for me also. If you are calling StringTemplate from Antlr as a StringTemplateGroup, the syntax is a little different. Replace $ with <>.