我有一个简单的问题,现在被困了几个小时......
#{bean.testVar eq 'AAA'}
<c:choose>
<c:when test="#{bean.testVar eq 'AAA'}">
TRUE
</c:when>
<c:otherwise>
FALSE
</c:otherwise>
</c:choose>
testVar 正在返回字符串“AAA”,但在页面上我总是看到
true
FALSE
当我期待
true
TRUE
有什么想法可能导致这种情况吗?谢谢。