如何在JSTL中使用?我想做这样的事情。
<c:if ${order.products} == NULL>
a
else
b
</c:if>
答案 0 :(得分:0)
试试这个:
<c:choose>
<c:when test="${order.products == null}">
a
</c:when>
<c:otherwise>
b
</c:otherwise>
</c:choose>
答案 1 :(得分:-1)
我认为语法是这个或类似的东西。
<c:choose>
<c:when test="${order.products == null}">
a
</c:when>
<c:otherwise>
b
</c:otherwise>
</c:choose>