ถูกต้องหรือไม่
<c:if test="${theBooleanVariable == false}">It's false!</c:if>
หรือฉันสามารถทำได้?
<c:if test="${!theBooleanVariable}">It's false!</c:if>
ถูกต้องหรือไม่
<c:if test="${theBooleanVariable == false}">It's false!</c:if>
หรือฉันสามารถทำได้?
<c:if test="${!theBooleanVariable}">It's false!</c:if>
คำตอบ:
ทั้งสองผลงาน แทนที่จะ==
คุณสามารถเขียนeq
คุณสามารถตรวจสอบวิธีนี้ได้เช่นกัน
<c:if test="${theBooleanVariable ne true}">It's false!</c:if>