gpt4 book ai didi

java - 使用 AjaxBehaviorEvent 的 bean 方法和不使用 AjaxBehaviorEvent 的 bean 方法之间的区别?

转载 作者:行者123 更新时间:2023-12-01 14:47:24 26 4
gpt4 key购买 nike

我的 XHTML 是这样的

<h:form id="form">
<h:panelGrid columns="3">
<h:outputText value="Keyup: " />
<p:inputText id="counter">
<p:ajax event="keyup" update="out"
listener="#{counterBean.increment}" />
</p:inputText>
<h:outputText id="out" value="#{counterBean.count}" />
</h:panelGrid>
</h:form>

案例一:ajax监听方法AjaxBehaviorEvent

public void increment(AjaxBehaviorEvent event) {
count++;
}

案例二:无AjaxBehaviorEvent

 public void increment() {
count++;
}

在这两种情况下,监听器都会被调用,并执行计数器作业来增加 keyup 的计数。 。所以,我什么时候需要使用 AjaxBehaviorEvent什么时候我不需要使用?

最佳答案

您可以将多个ajax事件绑定(bind)到同一个方法,并使用AjaxBehaviorEventgetSource()来了解哪个组件触发了该事件。

关于java - 使用 AjaxBehaviorEvent 的 bean 方法和不使用 AjaxBehaviorEvent 的 bean 方法之间的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15285256/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com