使用 Django 聊天弹出窗口jQuery
我正在开发一个聊天系统。我希望每当客户尝试联系另一个客户时都会出现一个新的弹出窗口。那么如何创建一个弹出窗口以在特定事件(例如客户端收到消息时)打开。
我正在使用 Django、Jquery。
谢谢。
I am developing a chat system. I want a new popup window to appear whenever a client try to contact another client. so how can I create a popup window to be opened on a certain event like when client receive a message.
I am using Django, Jquery.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看这篇文章中接受的答案:
Facebook 聊天如何避免服务器的连续轮询?
我认为 Comet这里提到的技术最适合您的情况,并且可以帮助您避免持续的 AJAX 轮询。
您可以设置一个 Django 视图,作为聊天服务器的客户端,不断监听,然后每当从聊天服务器收到新事件时,它就可以关闭其连接并将响应发送到浏览器(挂起的 AJAX 请求)。
Check out the accepted answer on this post:
How does Facebook chat avoid continuous polling of the server?
I think the Comet technique mentioned here would be best for your situation and could help you to avoid constant AJAX polling.
You could set up a Django view that worked as a client to a chat server, constantly listening, then it could close its connection and send the response to the browser (the hanging AJAX request) whenever a new event is received from the chat server.
您可能想尝试使用 jQuery UI Chatbox 插件。它提供了一个小部件并且易于集成。
http://www.cs.illinois.edu/homes/wenpu1/chatbox.html
You might want to try using jQuery UI Chatbox Plugin. It provides a widget and is easy to integrate.
http://www.cs.illinois.edu/homes/wenpu1/chatbox.html