JSTL c:when xml 字符串测试
JSTL c:when xml string test
所以我在 jsp 页面上呈现了一个 xml 流。
为了这个例子,需要测试的字符串将显示为:
<x:out select="$xmlStream/TITLE" />
我需要测试那个字符串:
<c:when test="${TITLE == 'x'}">
但我不确定测试的语法是否正确...
提前致谢!
<c:set var="title">
<x:out select="$xmlStream/TITLE" />
</c:set>
<c:if test="${title == 'x'}"/>
---your code---
</c:if>
所以我在 jsp 页面上呈现了一个 xml 流。
为了这个例子,需要测试的字符串将显示为:
<x:out select="$xmlStream/TITLE" />
我需要测试那个字符串:
<c:when test="${TITLE == 'x'}">
但我不确定测试的语法是否正确... 提前致谢!
<c:set var="title">
<x:out select="$xmlStream/TITLE" />
</c:set>
<c:if test="${title == 'x'}"/>
---your code---
</c:if>