如何在JSTL中将char“ symbol”连接到String

时间:2018-07-03 15:03:54

标签: jsp jstl

我要显示以下文本:例如 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" />

1 个答案:

答案 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>