从 Struts2 表单提交填充集合

发布于 2024-07-24 04:51:31 字数 415 浏览 4 评论 0原文

我正在尝试从表单填充 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

短叹 2024-07-31 04:51:31

如果我理解正确的话,您只是想为每个隐藏字段使用不同的名称?

<s:iterator value="bars" status="key">
    <s:hidden name="bar.foos[%{#key.index}].attr1" value="attr1" />
    <s:hidden name="bar.foos[%{#key.index}].attr2" value="attr2" />
</s:iterator>

这应该给你相当于

<input type="hidden" name="bar.foos[0].attr1" value="some value" />
<input type="hidden" name="bar.foos[0].attr2" value="some other value" />
<input type="hidden" name="bar.foos[1].attr1" value="some value" />
<input type="hidden" name="bar.foos[1].attr2" value="some other value" />

如果你有适当的 getter/setter,它应该在提交表单时设置所有值。

If I understand it correctly, you just want different name for each hidden field?

<s:iterator value="bars" status="key">
    <s:hidden name="bar.foos[%{#key.index}].attr1" value="attr1" />
    <s:hidden name="bar.foos[%{#key.index}].attr2" value="attr2" />
</s:iterator>

which should give you the equivalent of

<input type="hidden" name="bar.foos[0].attr1" value="some value" />
<input type="hidden" name="bar.foos[0].attr2" value="some other value" />
<input type="hidden" name="bar.foos[1].attr1" value="some value" />
<input type="hidden" name="bar.foos[1].attr2" value="some other value" />

If you have proper getter/setter, it should set all the values when the form is being submitted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文