0

我正在尝试使简单的示例正常工作,这是示例代码 .stg 文件

group list-demo;

htmListExample(xmen) ::= <<
Example 5:
<html>
    <body>
    <h1>Original X-Men</h1>
        <ul>
            $xmen:listItem()$
        </ul>
        </body>
    </html>

    >>

    listItem() ::= <<
    <li>$it$</li>
>>

我的Java代码:

STGroup group = new STGroupFile("/myTemplate2.stg",'$','$');
ST template = group.getInstanceOf("htmListExample");
List<String> xmen = Arrays.asList("Jean Gray", "Cyclops");
template.add("xmen", xmen);
System.out.println(template.render().toString());

和输出:

 context [/htmListExample] 6:18 passed 1 arg(s) to template /listItem with 0 declared arg(s)
 context [/htmListExample] 6:13 passed 1 arg(s) to template /listItem with 0 declared arg(s)
 context [/htmListExample] 6:13 passed 1 arg(s) to template /listItem with 0 declared arg(s)
 context [/htmListExample /listItem] 2:5 attribute it isn't defined
 context [/htmListExample /listItem] 2:5 attribute it isn't defined
Example 5:
<html>
    <body>
        <h1>Original X-Men</h1>
        <ul>
            <li></li>
            <li></li>
        </ul>
    </body>
</html>

任何人都可以解释为什么无法识别 listItem() 吗?我正在使用 ST-4.0.7.jar。

谢谢

4

1 回答 1

0

在 StringTemplate 4 中,map 运算符:将集合映射到带有一个参数的模板。您需要为模板声明it参数:listItem

listItem(it) ::= <<
<li>$it$</li>
>>

您在输出中看到的警告是这样说的:

  1. ST4 需要一个带有 1 个参数的模板,但您传递了listItem它需要 0 个参数。
  2. 您没有声明it参数,但在listItem.
于 2013-07-30T22:44:51.553 回答