从 Struts2 表单提交填充集合
我正在尝试从表单填充 bean 列表:
public class Foo {
public String attr1;
public String attr2;
}
public class Bar {
public List<Foo> foos;
}
public class StrutsAction extends Action {
public Bar bar;
}
那么在我的 Struts2 表单中,填充 Foo 的最佳方法是什么? 直觉上,我想做:
<input type="hidden" name="bar.foos.attr1" />
但这不起作用并且会导致碰撞。 我确信答案非常简单,但我忽略了它。
I'm trying to populate a List of beans from a form:
public class Foo {
public String attr1;
public String attr2;
}
public class Bar {
public List<Foo> foos;
}
public class StrutsAction extends Action {
public Bar bar;
}
So in my Struts2 form, what's the best way to populate Foo? Intuitively, I want to do:
<input type="hidden" name="bar.foos.attr1" />
but that isn't working and would cause collisions. I'm sure the answer is very simple and I'm overlooking it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,您只是想为每个隐藏字段使用不同的名称?
这应该给你相当于
如果你有适当的 getter/setter,它应该在提交表单时设置所有值。
If I understand it correctly, you just want different name for each hidden field?
which should give you the equivalent of
If you have proper getter/setter, it should set all the values when the form is being submitted.