JSF 页面上的 EL 表达式求值时间

发布于 2024-11-28 11:59:14 字数 165 浏览 0 评论 0原文

如果我在支持 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 技术交流群。

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

发布评论

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

评论(1

新人笑 2024-12-05 11:59:14

开箱即用的提交按钮会将请求发送到服务器,这将更新您的服务器端组件变量。

但实际上您可以非常轻松地对您的组件进行 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.

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