使用 Django 聊天弹出窗口jQuery

发布于 2024-10-31 06:22:25 字数 123 浏览 3 评论 0原文

我正在开发一个聊天系统。我希望每当客户尝试联系另一个客户时都会出现一个新的弹出窗口。那么如何创建一个弹出窗口以在特定事件(例如客户端收到消息时)打开。

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

找个人就嫁了吧 2024-11-07 06:22:25

查看这篇文章中接受的答案:

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.

故事未完 2024-11-07 06:22:25

您可能想尝试使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文