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.
ArrayList我在of 中有用户UserDetails。UserDetails有 2 个字段:id和name.
ArrayList
UserDetails
id
name
我想要一个填充用户名的 Struts2 选择标签,但是在单击提交按钮时它应该发布用户id。
s:select list="users.userName" value="users.userId" size="0"
这就是我所做的......但它对我不起作用。
我怎样才能做到这一点?
就像@AleksandrM 说的,在这里查看文档
它应该如下所示:
<s:select list="users" listKey="userName" listValue="userId"/>
<s:select list="UserDetails" listKey="name" listValue="id"/>