在我在网页上展示的事件列表中,我想提供在服务器端发生事件时获取“实时”更新的功能。这样的实时监视器,而不是在轮询周期中重新加载列表。
我想我需要这样的东西:
- Client: open a socket to the server (ajax like),
listening for events,
if an event comes, update the visible list.
- Server: if such socket has been opened:
propagate any event through that socket.
是否有适合此目的的 jQuery 扩展?