我有一个带有 5 个文本字段的 html 表单。
我有一个从 servlet 中的数据库查询创建的用户对象的 ArrayList。
我已经使用 jstl 填充了选择选项的下拉菜单,并且填充得很好。
<c:forEach var="user" items="${userList}">
<option>${user.userName}</option>
</c:forEach>
我要做的是在选择时将用户对象与数组列表隔离,并使用所选对象的其他属性填充表单字段,例如:
user.firstName、user.lastName、user.email 等......
我大部分时间都在寻找答案,但没有运气。
任何帮助表示赞赏。