获取服务器响应而不使用聊天应用程序的 setinterval php jquery
我做了一个聊天应用程序,这是刷新代码
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧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 ...