0

我从数据库中获取值 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>
4

2 回答 2

1

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

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

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

<c:when test="${groupProfileView.userinfo.profilePrivacy == '1'}">
于 2013-11-08T05:00:13.323 回答
0

将其更改为

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

有关的

于 2013-11-08T04:47:00.690 回答