Facelets:如何将属性保存到视图 bean 中?
这个问题可能太简单太愚蠢了,但是,我没有从谷歌得到任何有用的信息。
bean 类:
public class Foo {
boolean a;
public boolean getA() {
return a;
}
public void setA(boolean a) {
this.a = a;
}
}
和页面:
<h:selectBooleanCheckbox value="#{foo.a}" />
如何将复选框的值写回视图 bean 中的“a”属性,而不是 valueChangeListener?或者一般来说,更新 bean 属性的推荐方法是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需提交表格即可。例如,使用
来执行此操作。确保两个标记位于同一
内。一般来说,每个没有 都会提交表单(并让输入字段的值经过转换、验证和 bean 更新)。
immediate="true"
属性的You just need to submit the form. Do this with a
<h:commandButton />
, for example. Make sure that both tags are within the same<h:form></h:form>
.Generally speaking, every
<h:commandSomething
that has noimmediate="true"
attribute, will submit the form (and let the values of input fields go through conversion, validation and bean update).