a4j 事件顺序是什么?

发布于 2024-11-26 17:49:50 字数 296 浏览 2 评论 0原文

a4j:commandLinka4j:commandButton 的事件序列是什么?

是不是:onclick->actionListner->oncomplete->reRender

reRender 是否出现在 oncomplete 之前?

action何时发生?

What is the event sequence of a a4j:commandLink or a4j:commandButton?

Is it right: onclick->actionListner->oncomplete->reRender?

Is reRender comes before oncomplete?

When action happens?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

热血少△年 2024-12-03 17:49:51

当最终用户单击生成的 HTML 元素时,首先调用 onclick JavaScript。当 JavaScript 代码返回 false 时,JSF 端中所有关联的 ActionListener 实现将按照它们关联的顺序被调用组件。如果侦听器没有抛出任何异常,则将调用真正的操作。当action返回成功响应时,reRender中指定的组件将在客户端更新。最后将调用 oncomplete JavaScript。

如果您在客户端和服务器端都有调试器并且知道如何使用它,那么跟踪自己就很容易了。我强烈推荐客户端使用 Firebug,服务器端使用 Eclipse。当然,您也可以使用 alert()System.out.println() 进行穷人调试。

The onclick JavaScript is called the first when the enduser clicks the generated HTML element. When the JavaScript code does not return false, then all associated ActionListener implementations in the JSF side will be invoked, in the order of their association with the component. If the listeners haven't thrown any exception, then the real action will be invoked. When the action returns a successful response, then the components specified in reRender will be updated in the client side. Finally the oncomplete JavaScript will be called.

It's pretty easy to track yourself if you have a debugger in both the client and server side and know how to use it. I strongly recommend Firebug for the client side and Eclipse for the server side. You can of course also always do poor man's debugging using alert()s or System.out.println()s.

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