我有一个.jsp
页面,其中包含以下代码:
<tbody>
<c:forEach items="${companies}" var="companies">
<tr>
<td>${companies.id}</td>
<td>${companies.name}</td>
<td>${companies.email}</td>
<td>${companies.countryId}</td>
<td>${companies.sendToIdes}</td>
<td>${companies.senderId}</td>
</tr>
</c:forEach>
</tbody>
和这段代码:
<tbody>
<c:forEach items="${countries}" var="countries">
<tr>
<td>${countries.id}</td>
<td>${countries.code}</td>
<td>${countries.name}</td>
<td>${countries.model}</td>
<td>${countries.hctaId}</td>
<td>${countries.certificate}</td>
<td>${countries.signature}</td>
</tr>
</c:forEach>
</tbody>
看到companies
有countryId
而countries
有id
,它们与这两个信息有关。
我需要在与countries.name
和companies
相关的id
内插入countryId
。
答案 0 :(得分:1)
假设countries
是按国家/地区ID(即country.id
)索引的地图,${countries[company.countryId].name}
将引用公司表中的国家/地区名称。< / p>
(顺便说一句,我建议您在c:forEach
变量声明中使用单数变量名称。例如,将var="companies"
更改为var="company"
,将var="countries"
更改为{ {1}}。)