2

我嵌套自定义标签的场景;IE:

<ss:mytag>
    <ss:othertag />
    <ss:othertag />
</ss:mytag>

从 othertag 的 freemarker 模板中,我如何获得包装 mytag 父级的句柄?

我的目标是查看当前标签是否是其父标签的第一个子标签。也许有更好的方法来做到这一点?

4

1 回答 1

0

You could use global variables for that. Like you do <#global mylib_othertagCnt = 0> in mytag, and <#global mylib_othertagCnt = mylib_othertagCnt + 1> and then <#if mylib_othertagCnt == 1>...</#if> in othertag.

于 2012-04-06T15:01:10.210 回答