在displaytag中 我想判断(c:if)某一列是否为0,为0则不显示 不为0则显示其值 要怎么实现

时间:2022-07-09 19:32:51
<display:table name="topURLList" export="false" id="topURL" requestURI="" class="main_table">


<display:column title="来源页面">
<c:if test="${topURL.refererCounts} == 0"></c:if>
<c:if test="${topURL.refererCounts} != '">这要怎么写</c:if>
</display:column>

上面的c:if 那块要怎么写?在线等

1 个解决方案

#1



<display:column title="来源页面">
<c:if test="${topURL.refererCounts== 0}"></c:if>
<c:if test="${topURL.refererCounts != 0}">${topURL.refererCounts}</c:if>
</display:column>

#1



<display:column title="来源页面">
<c:if test="${topURL.refererCounts== 0}"></c:if>
<c:if test="${topURL.refererCounts != 0}">${topURL.refererCounts}</c:if>
</display:column>