JSF 页面上的 EL 表达式求值时间
如果我在支持 bean 上有一个复选框组件和一个相应的实例变量,以及一个具有相应操作方法的提交按钮。如果用户选中该框,则该变量应设置为 true
。
我的问题是,当用户检查或按下提交按钮时,该变量是否会设置为 true
?
提前致谢。
If I have a check box component and a corresponding instance variable on the backing bean, and a submit button with a corresponding action method. If the user checked the box, the variable should be set to true
.
My Question, will that variable set to true
when the user checked it or when the user press submit button?
Thanks in advanced.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
开箱即用的提交按钮会将请求发送到服务器,这将更新您的服务器端组件变量。
但实际上您可以非常轻松地对您的组件进行 AJAX 化(尤其是使用 JSF2),并且可以实现服务器端组件的即时更新。 一些组件库内置了此功能。
Out of the box the submit button will send the request to the server which will update your server-side component variable.
But you can actually AJAXify your components quite easily (especially using JSF2), and can achieve an instant update of the server-side component. Some component libraries provide this for you built-in.