我从数据库中获得值0和1,我想在我的jsp页面中比较该值,
我尝试了下面的代码,但无法正确比较。

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

最佳答案

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

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


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

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

08-03 12:15