我要显示以下文本:例如 index / size ; 1/5,我写了以下标签:
<c:out value="${blocCourant.titre} ${fn:length(blocCourant.questions)>1 ? questionCourante.indice '/'
fn:length(blocCourant.questions) : ''}" escapeXml="false" />
我也尝试了以下步骤,但是没有用”:
<c:out value="${blocCourant.titre} ${fn:length(blocCourant.questions)>1 ? questionCourante.indice /
fn:length(blocCourant.questions) : ''}" escapeXml="false" />
答案 0 :(得分:2)
打破逻辑
尝试一下
<c:if test="${fn:length(blocCourant.questions)>1}">
<c:out value="${blocCourant.titre} questionCourante.indice / ${fn:length(blocCourant.questions)}" escapeXml="false" />
</c:if>