我想在我的 JSF 页面中进行倒计时,我用<p:poll>
Primefaces 解决了它。
我有以下来源:
JSF 页面:
<h:form>
<h:outputText id="timeLeft" value="#{bean.secondsToGo}" />
<p:poll interval="1" listener="#{bean.countdown}" stop="#{bean.secondsToGo<0}" update="timeLeft" />
</h:form>
BEAN(视图范围):
private int secondsToGo;
public void setValues(){ //prerenderview-event )
if(FacesContext.getCurrentInstance().isPostback()){
System.out.println("POSTBACK RECOGNIZED");
return; //ignore ajax-calls!
}
...
secondsToGo=74; //(the value depends from a GET-parameter
System.out.println("INIT: " + secondsToGo);
}
public void countdown(){
System.out.println("BEFORE: " + secondsToGo);
secondsToGo--;
System.out.println("AFTER: " + secondsToGo);
}
有趣或奇怪的是,当执行 ajax-call (p:poll) 时, secondsToGo 被重置为 0:
INIT: 74 //正确的值
之前:0
之后:-1
为什么?