How does in-browser chat work?

前端 未结 6 735
攒了一身酷
攒了一身酷 2020-12-24 06:53

Just curious. How exactly does chatting in a browser work? Usually if a user goes to a web page, his/her webbrowser requests the page content. A server produces output and s

6条回答
  •  萌比男神i
    2020-12-24 07:24

    There are some push technologies, such as Comet, but they're not widely implemented. Most of the time this is accomplished via polling at some small interval with AJAX and downloading any new messages that are available since the last downloaded message.

提交回复
热议问题