gpt4 book ai didi

jsf - 在 jsf primefaces 中停止 ajax 轮询?

转载 作者:行者123 更新时间:2023-12-02 01:15:19 25 4
gpt4 key购买 nike

我正在使用 prime-faces 3.2。 Ajax 轮询不会停止,我正在使用停止属性来停止轮询,并且我试图使用 getter 和 setter 停止它从 bean 中停止。即使我已经使用 java 脚本来停止,但我不能。任何停止轮询的解决方案?

最佳答案

这段代码对我来说就像一个魅力:

 <p:poll  interval="2" update="flightsTable" widgetVar="poll"  
autoStart="false" listener="#{searchFlightBean.checkIfSearchCompleate}"/>

searchFlightBean 中的方法:

public void checkIfSearchCompleate() {
if(searchCompleate) {
RequestContext reqCtx = RequestContext.getCurrentInstance();
reqCtx.execute("poll.stop();");
}
}

关于jsf - 在 jsf primefaces 中停止 ajax 轮询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12213764/

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