如何使用strut标记比较0和1

时间:2013-11-08 04:43:55

标签: java struts

我从数据库获得值0和一,我想在我的jsp页面中比较该值, 我试过下面的代码,但没有正确比较。

<c:choose>
            <c:when test="%{#groupProfileView.userinfo. profilePrivacy}== 1">
          creator name: ${groupProfileView.userinfo.firstName}
          </c:when>
          <c:otherwise>anonmous</c:otherwise>
          </c:choose>

2 个答案:

答案 0 :(得分:1)

如果profilePrivacy是一个数字,请尝试下一个:

<c:when test="${groupProfileView.userinfo.profilePrivacy == 1}">

如果profilePrivacy是字符串,请尝试下一个:

<c:when test="${groupProfileView.userinfo.profilePrivacy == '1'}">

答案 1 :(得分:0)

将其更改为

<c:when test='${groupProfileView.userinfo.profilePrivacy eq "1"'>

相关