0

我在jsp页面中有html表。我的代码如下所示:

<c:choose>    
    <c:when test="${empty institutionAttributes}">      
        <h2 align="center"><spring:message code="label.attributes.msg"/> </h2>      
    </c:when>

    <c:otherwise>
        <h3 align="center"><spring:message code="label.result.msg"/> </h3>      
        <table border="1" align="center">               
        <thead>
            <tr>
                <th align="center"><spring:message code="label.header.table.name" /></th>
                <th align="center"><spring:message code="label.header.table.type" /></th>
                <th align="center"><spring:message code="label.header.table.date" /></th>
                <th align="center"><spring:message code="label.header.table.dayscheduale" /></th>
                <th align="center"><spring:message code="label.header.table.workscheduale" /></th>
                <th align="center"><spring:message code="label.header.table.rotation" /></th>
                <th align="center"><spring:message code="label.header.table.numberkids" /></th>
                <th align="center"><spring:message code="label.header.table.under3" /></th>
                <th align="center"><spring:message code="label.header.table.upper3" /></th>
                <th align="center"><spring:message code="label.header.table.goschool" /> <br> <fmt:formatDate value="${formDescriptionVar.kidsGoSchoolDate}" pattern="yyyy"/>  <spring:message code="label.header.table.year" /></th>
            </tr>
        </thead>

        <tbody>                 
            <c:forEach items="${institutionAttributes}" var="institutionVar">
                <tr>
                    <td align="center">${institutionVar.nameOfInstitution}</td>
                </tr>
            </c:forEach>

            <c:forEach items="${institutionTypeAttributes}" var="institutionTypeVar">
                <tr>
                    <td align="center">${institutionTypeVar.typeOfInstitution}</td>
                </tr>
            </c:forEach>

            <c:forEach items="${formDateAttributes}" var="formDateVar">
                <tr>
                    <td align="center"><fmt:formatDate value="${formDateVar.particularDate}" pattern="dd-MM-yyyy"/>  </td>
                </tr>
            </c:forEach>

            <c:forEach  items="${formDescriptionAttributes}" var="formDescriptionVar">
                <tr>
                    <td align="center">${formDescriptionVar.daySchedule}</td>
                    <td align="center">${formDescriptionVar.workScheduale}</td>
                    <td align="center">${formDescriptionVar.rotation}</td>
                    <td align="center">${formDescriptionVar.numberOfKids}</td>
                    <td align="center">${formDescriptionVar.kidsUnder3YearsOld}</td>
                    <td align="center">${formDescriptionVar.kidsUpper3YearsOld}</td>
                    <td align="center">${formDescriptionVar.kidsGoSchoolNumber}</td>            
                 </tr>
            </c:forEach>
            </tr>           

        </tbody>

        </table>
    </c:otherwise>
</c:choose>

在 JSP 页面内部,我有带有<thead><tbody>标签的表格。

在里面<tbody>我使用 JSP 的<c:forEach>标签。

在里面<c:forEach>我使用<tr><td>标签。

在我想要的图片中:

|------------------------------------|
|  Header1  |  Header2  |  Header3   |
|------------------------------------|
|   Value1  |  Value2   |  Value3    |
|------------------------------------|

我得到什么:

 |------------------------------------|
 |  Header1  |  Header2  |  Header3   |
 |------------------------------------|
 |   Value1  |           |            |
 |------------------------------------|
 |           |  Value2   |            |
 |------------------------------------|
 |           |           |   Value3   | 
 |------------------------------------|

所以,问题是在 every中<c:forEach>创建新的,但我需要在不同. 我怎样才能做到这一点?<tr><c:forEach> <tr><c:forEach>

4

1 回答 1

0

或者我没有正确理解您的问题,或者您的问题有一个非常简单的解决方案。

您只需要将<tr>标签放在 之外forEach,例如:

<tr>
  <c:forEach items="${institutionAttributes}" var="institutionVar">
    <td align="center">${institutionVar.nameOfInstitution}</td>
  </c:forEach>
</tr>

这将在表中仅创建 1 行,其中每个值对应 1 列institutionAttributes...

处理完foreach之后,您的 HTML 将如下所示:

<tr>
  <td align="center">nameOfInstitution1</td>
  <td align="center">nameOfInstitution2</td>
  <td align="center">nameOfInstitution3</td>
  ...
</tr>
于 2013-07-21T14:23:41.097 回答