如何在 JSTL for Java JSP 中执行“嵌套 if”?
我想做类似下面的事情:
<c:choose>
<c:when test="${empty example1}">
</c:when>
<c:otherwise>
<c:when test="${empty example2}">
</c:when>
<c:otherwise>
</c:otherwise>
</c:otherwise>
</c:choose>
这有可能吗?我在尝试运行时遇到异常。
谢谢。