JSTL - 如果条件

时间:2016-01-29 19:49:35

标签: jstl

如何在JSTL中使用?我想做这样的事情。

<c:if  ${order.products} == NULL>
a
else
b
</c:if>

2 个答案:

答案 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>