<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>