我正在使用以下代码来显示信息,但是我得到了 jstl 异常。请提出任何替代或适当的方法来处理这个
<div class="span3">
<c:choose>
<c:when test="${fn:length(alertStatusForm.totalSentRecipient) gt 0}">
<div class="row-fluid"><div class="span12"><a href="/event/alert/recipient/list/${alertStatusForm.forAlert.id}" class="underline">${fn:length(alertStatusForm.totalSentRecipient)}</a></div></div>
</c:when>
<c:otherwise>
<label style="color:black"><spring:message code='alert.voice.time.others'/></label>
</c:otherwise>
</c:choose>
<c:choose>
<c:when test="${fn:length(alertStatusForm.totalNotSentRecipient) gt 0}">
<div class="row-fluid"><div class="span12"><a style="color: red" href="/event/alert/recipient/list/${alertStatusForm.forAlert.id}" class="underline">${fn:length(alertStatusForm.totalNotSentRecipient)}</a></div></div>
</c:when>
<c:otherwise>
<label style="color:black"><spring:message code='alert.voice.time.others'/></label>
</c:otherwise>
</c:choose>
<c:choose>
<c:when test="${fn:length(alertStatusForm.totalInProgressRecipient) gt 0}">
<div class="row-fluid"><div class="span12"><a href="/event/alert/recipient/list/${alertStatusForm.forAlert.id}" class="underline">${fn:length(alertStatusForm.totalInProgressRecipient)}</a></div></div>
</c:when>
<c:otherwise>
<label style="color:black"><spring:message code='alert.voice.time.others'/></label>
</c:otherwise>
</c:choose>
</div>