jmesa中判断显示数据做判断c:choose 和c:when用法

     <jmesa:htmlColumn property="status" title="文档状态" filterable="false" width="3%">
      <div align="center">
       <c:choose>
        <c:when test="${'0' eq item.status}">审核中</c:when>
        <c:when test="${'1' eq item.status}">已发布</c:when>
       </c:choose>
      </div>
     </jmesa:htmlColumn>

原文地址:https://www.cnblogs.com/guanghuiqq/p/2724293.html