我有一个 ui:repeat。我希望它每 5 秒刷新一次。我试过 p:poll 但它不起作用。有什么办法可以使这个工作吗?
<ui:repeat value="#{videoImpl.fGetAllComments()}" var="v" id="commentlist">
<div class="comment-entry"><h:outputText value="#{v.comment}"/></div>
</ui:repeat>
<p:poll update="commentlist" interval="5" />