我正在开发一个应用程序 JSF,我想定期刷新一个带有 ajax 的组件,例如 facebook 通知区域行为。我怎样才能做到这一点?
问问题
34723 次
2 回答
33
民意调查是您需要使用的
轮询组件在指定的时间间隔内进行 ajax 调用。
例如 Primefaces 民意调查
<h:form id="form">
<h:outputText id="txt_count" value="#{counterBean.count}" />
<p:poll interval="3" listener="#{counterBean.increment}" update="txt_count" />
</h:form>
纯 JSF 方法是使用将调用定期的 js 计时器document.getElementById('someFormId:idOfButton').click();
或jQuery$("#someFormId\\:idOfButton").click();
而按钮看起来像这样
<h:commandButton id="idOfButton">
<f:ajax render="txt_count"></f:ajax>
</h:commandButton>
像这样的东西
setInterval(function(){$("idOfButton").click()},3000);
有关计时器JavaScript 计时事件的更多信息
于 2012-06-27T14:16:33.217 回答
5
在 RichFaces 中也有一个投票组件。这是他们提供的一个很好的例子
<a4j:region>
<h:form>
<a4j:poll id="poll" interval="1000" enabled="#{userBean.pollEnabled}" reRender="poll,grid"/>
</h:form>
</a4j:region>
<h:form>
<h:panelGrid columns="2" width="80%" id="grid">
<h:panelGrid columns="1">
<h:outputText value="Polling Inactive" rendered="#{not userBean.pollEnabled}" />
<h:outputText value="Polling Active" rendered="#{userBean.pollEnabled}" />
<a4j:commandButton style="width:120px" id="control" value="#{userBean.pollEnabled?'Stop':'Start'} Polling" reRender="poll, grid">
<a4j:actionparam name="polling" value="#{!userBean.pollEnabled}" assignTo="#{userBean.pollEnabled}"/>
</a4j:commandButton>
</h:panelGrid>
<h:outputText id="serverDate" style="font-size:16px" value="Server Date: #{userBean.date}"/>
</h:panelGrid>
</h:form>
于 2012-07-20T21:59:38.697 回答