2016-01-29 57 views

回答

-1

我相信语法是这个或类似的东西。

<c:choose> 
<c:when test="${order.products == null}"> 
a 
</c:when> 
<c:otherwise> 
b 
</c:otherwise> 
</c:choose> 
+0

而不是''它应该是'' Armaiti

0

试试这个:

<c:choose> 
<c:when test="${order.products == null}"> 
    a 
</c:when> 
<c:otherwise> 
    b 
</c:otherwise> 
</c:choose>