jstl choose when 소수점 비교하기

비교식을 < > 사용한 소수점 비교가 잘되지 않았다.

비교표현식으로 수정하니 원하는 값이 잘나옴 


   JSTL 비교표현식 을 사용해야함

== 또는 eq
!= 또는 ne
< 또는 lt
> 또는 gt
<= 또는 le
>= 또는 ge



                <c:forEach items="${resultList}" var="tableList" varStatus="listStatus">
                              <c:choose>
                        <c:when test="${tableList.f3 lt 0.1}"></c:when>
                        <c:when test="${tableList.f3 lt 1.0}">class="cr1"</c:when>
                        <c:when test="${tableList.f3 lt 5.0}">class="cr2"</c:when>
                        <c:when test="${tableList.f3 lt 10.0}">class="cr3"</c:when>
                        <c:when test="${tableList.f3 lt 20.0}">class="cr4"</c:when>
                        <c:when test="${tableList.f3 lt 50.0}">class="cr5"</c:when>
                        <c:when test="${tableList.f3 lt 100.0}">class="cr6"</c:when>                        
                        <c:otherwise>class="cr6"</c:otherwise>
                              </c:choose>   
                </c:forEach>

이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받고 있습니다. 1 5

잘생긴 팝콘 방문해주셔서 감사합니다.

이 글을 공유하기

댓글

Designed by JB FACTORY