Spring Web 流列表映射
在模型 bean 中,我有一个包含对象的列表。像这样:
private List<Data> data;
class Data{
String val1;
String val2;
...getters, setters
}
我需要将一些 select 标签映射到我的对象列表。我的意思是我有这样的事情:
<select name="val1">
<option value=1>val1 value 1</option>
<option value=2>val1 value 2</option>
</select>
<select name="val2">
<option value=1>val2 value 1</option>
<option value=2>val2 value 2</option>
</select>
提交操作后,我需要一个包含一个带有选定值(val1、val2 选择)的数据元素的列表。我需要一个列表,因为我有很多这样的“选择”对,并且计数是动态确定的。 有人知道怎么做吗?
提前致谢。
In the model bean I have a List with my objects. Like this:
private List<Data> data;
class Data{
String val1;
String val2;
...getters, setters
}
I need to map a few from select tags to a list of my objects. I mean I have something like this:
<select name="val1">
<option value=1>val1 value 1</option>
<option value=2>val1 value 2</option>
</select>
<select name="val2">
<option value=1>val2 value 1</option>
<option value=2>val2 value 2</option>
</select>
after submit action I need to have a list with one Data element with selected values (val1, val2 selects). I need a list cause I have a lot of such "select" pairs and the count is determined dynamically.
Does anybody know how to that?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 JSP,请使用
http:// www.tutorialspoint.com/jsp/jstl_core_foreach_tag.htm
if your using JSP, use
<c:forEach>
http://www.tutorialspoint.com/jsp/jstl_core_foreach_tag.htm