我正在编写一个自定义标记库(1.2),其中包含循环标记和嵌套标记。有谁知道在第一个循环标记内是否有办法知道稍后在 JSP 中是否有更多相同的循环标记出现?
例子 :
<tt:myLoopTag>
<%--
Normally, if "myLoopTag" was the only one tag in the JSP,
I would do some stuff in the doEndTag method
--%>
</tt:myLoopTag>
...
<tt:myLoopTag>
<%--
But I have a second "myLoopTag" here, so I would like to do
some stuff in the doEndTag method of this tag, not in the first one
--%>
</tt:myLoopTag>
希望我足够清楚..
注意:不幸的是,我认为这篇文章对我没有用......
谢谢 !