在jsf primefaces中停止ajax轮询?

wil*_*ild 1 jsf primefaces

我正在使用素面3.2.Ajax轮询没有停止,我使用停止属性来停止轮询,我试图使用getter和setter停止它来形成bean.即使我已经使用java脚本停止但我不能.任何停止投票的解决方案?

Mis*_*sha 5

在我的情况下,这段代码就像一个魅力:

 <p:poll  interval="2" update="flightsTable" widgetVar="poll"  
         autoStart="false" listener="#{searchFlightBean.checkIfSearchCompleate}"/>
Run Code Online (Sandbox Code Playgroud)

searchFlightBean中的方法:

public void checkIfSearchCompleate() {
    if(searchCompleate) {
        RequestContext reqCtx = RequestContext.getCurrentInstance();
        reqCtx.execute("poll.stop();");
    }
}
Run Code Online (Sandbox Code Playgroud)