标签:
<c:forEach var="c" items="${v.categories}">
<c:if test="${flag}">,</c:if>
${c.name}
<c:set var="flag" value="true" scope="request"/>
</c:forEach>
<c:choose>
<c:when test="${fn:length(productEntities) > 0}">
<c:forEach var="p" items="${productEntities}" varStatus="idx">
<c:if test="${idx.index == 0}">
${p.productName}
</c:if>
<c:if test="${idx.index != 0}">
,${p.productName}
</c:if>
</c:forEach>
</c:when>
<c:otherwise>
为空
</c:otherwise>
</c:choose>
标签:
原文地址:http://www.cnblogs.com/yaoyao66123/p/4415118.html