获取服务器响应而不使用聊天应用程序的 setinterval php jquery

发布于 2024-12-01 16:15:08 字数 306 浏览 0 评论 0原文

我做了一个聊天应用程序,这是刷新代码

   setInterval(function() {
      $('#DisplauDiv').load('show-chat.php?session=<?php echo $_GET['session'];?>');

   }, 1000);

,并且每秒都在加载,这会降低我的 Mysql 的性能。 虽然我厚颜无耻地脸书(firebug),但他们没有这样的东西来从服务器获取响应。

请告诉我执行此操作的技术。

预先感谢大家阅读和重播本文。

i made a chat application, here is the refresh code

   setInterval(function() {
      $('#DisplauDiv').load('show-chat.php?session=<?php echo $_GET['session'];?>');

   }, 1000);

And this keep loading in each second, that will slow down the perfomance of my Mysql.
While i cheeked Facebook(firebug), they dont have anything like this to get response from server.

Please tell me the technique to do this.

Thanks in advance to all for reading and replaying this..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

彩虹直至黑白 2024-12-08 16:15:08

好吧setInterval是穷人的comit看看COMET

也看到这个答案反向使用 php 实现 Ajax

另请参阅此链接如何facebook 聊天窗口实现了吗?

打开 firebug 你会在 facebook 页面上打开 firebug 中的网络面板并转到 xhr 你会注意到一个连续旋转的轮子,那就是 COMET ...

well setInterval is poor man's comit have a look at COMET

also see this answer Reverse Ajax implementation using php

also see this link How are the facebook chat windows implemented?

open firebug will you are on the facebook page open the net panel in firebug and go to xhr you will notice a continuous spinning wheel that is COMET ...

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