#otherwise

<c:otherwise>

<c:if>没有<c:else>可以用<c:choose>来取代结构:<c:choose>  <c:whentest="">   如果  </c:when>  ...
代码星球 ·2021-02-21

MyBatis choose(when, otherwise)标签

有时候我们并不想应用所有的条件,而只是想从多个选项中选择一个。而使用if标签时,只要test中的表达式为true,就会执行if标签中的条件。MyBatis提供了choose元素。if标签是与(and)的关系,而choose是或(or)的关系。choose标签是按顺序判断其内部when标签中的test条件出否成立,如果有...