使用 JSF 反向 Ajax?
是否可以在 JSF 2.0 中使用反向 Ajax?
我可以在 JSF 中使用 Ajax,但我不知道如何保持渲染。有什么想法吗?
Is it possible to work with reverse Ajax in JSF 2.0?
I could work with Ajax in JSF, but I don't know how to keep rendering. Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用反向 Ajax,您可以在客户端重复查询服务器以寻找响应的情况下进行轮询,并且可以在服务器与客户端保持连接并在可用时发送响应的情况下进行推送。
Richfaces 有
和
作为其 ajax 支持的一部分。With reverse Ajax you have polling where the client repeatedly queries the server looking for a response, and you have pushing where the server keeps a connection with the client and sends a response when available.
Richfaces has
<a4j:poll>
and<a4j:push>
as part of its ajax support.Primefaces 有 p:poll。
具有使用 CDI 事件的优势。Primefaces has p:poll.
<a4j:push>
has the advantage to use CDI events.