以下代码显示了从1到10开始使用Struts <s:a>
的链接。
<s:set var="currentPage" value="2"/>
<s:set var="begin" value="1"/>
<s:set var="end" value="10"/>
<s:iterator begin="%{begin}" end="%{end}" step="1" var="row" status="loop">
<s:if test="%{#currentPage eq #row}"> <!--???-->
<span><s:property value="%{#row}"/></span>
</s:if>
<s:else>
<s:url id="pageURL" action="someAction" escapeAmp="false">
<s:param name="currentPage" value="%{row}"/>
</s:url>
<s:a href="%{pageURL}" name="btnPage" cssClass="paging">
<s:property value="%{#row}"/>
</s:a>
</s:else>
</s:iterator>
当currentPage
(即2)与条件表达式test="%{#currentPage eq #row}"
匹配时,它只会在<s:property>
内使用<span>
显示文字,而不是显示链接。没关系。
当我使用这些相同的标签但在相应的动作类中使用适当的属性时,
<s:iterator begin="%{begin}" end="%{end}" step="1" var="row" status="loop">
<s:if test="%{currentPage eq #row}"> <!--???-->
<span class="current"><s:property value="%{#row}"/></span>
</s:if>
<s:else>
<s:url id="pageURL" action="someAction" escapeAmp="false">
<s:param name="currentPage" value="%{row}"/>
</s:url>
<s:a href="%{pageURL}" name="btnPage" cssClass="paging">
<s:property value="%{#row}"/>
</s:a>
</s:else>
</s:iterator>
在这种情况下,currentPage
(以及所有其他)是动作类中Long
类型的属性。这里,关于前一个案例test="%{#currentPage eq #row}"
的条件测试被评估为 false 。
要求在#
之前遗漏currentPage
。因此,表达式变为test="%{currentPage eq #row}"
(否则,总是评估为false)。
我不明白为什么第一种情况需要test="%{#currentPage eq #row}"
而第二种情况需要test="%{currentPage eq #row}"
?有什么我可能会失踪吗?
答案 0 :(得分:2)
当你<s:set>
一个值时,它不是 on 的值堆栈,而是 in “value stack context”。
使用裸currentPage
引用仅搜索实际的堆栈,而不是上下文。
使用#currentPage
不检查堆栈本身,而是引用堆栈 context 。
请参阅以下其他答案: