Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面的代码给了我两个值。97 或 12。
<form:input path="revRecov[${loop.index}].trkType" />
当它是 97 时,我想使用标签包,在标签下方我将显示 4 行。
当它是 12 时,我想使用标签 Pallet,在标签下方我将显示 4 行。我将同时在同一个屏幕上显示两者。
非常感谢任何有关如何在 JSP 中使用它的建议。
我没有使用${loop.index}0 或 1。在这种情况下,因为我们只有 2 行,所以我们可以直接传递索引而不是循环。
${loop.index}
<tr><td>Package<form:input path="revRecov[0].trkType"/></td></tr> <tr><td>Pallet<form:input path="revRecov[1].trkType"/></td></tr>