场景
使用<c:forEach标签时通常是遍历对象List,比如下面这种:
<c:forEach items="${flights}" var="flight">
<tr>
<td class="pass_width_ave_6_column">${flight.chineseName}</td>
<td class="pass_width_ave_6_column">${flight.chineseLastName}</td>
<td class="pass_width_ave_6_column">${flight.chineseFirstName}</td>
<td class="pass_width_ave_6_column">${flight.idType}</td>
<td class="pass_width_ave_6_column">${flight.idCode}</td>