想象一下,我们有一个按钮。当有人点击它时,会执行一个动作侦听器,然后执行<af:clientListener method="method1" type="action"/>
动作。在执行动作侦听器期间,逻辑发生了变化,我希望<af:clientListener method="method2" type="...."/>
被执行。是否可以停止执行第一个客户端侦听器并开始执行第二个侦听器?
<af:commandButton text="Click me" id="btn" actionListener="#{pageFlowScope.someBean.action}">
<af:clientListener method="method1" type="action"/>
<af:clientListener method="method2" type="...."/>
</af:commandButton>
谢谢!