有没有更有效的方法在页面标题中显示未读消息数?
目前我使用这个......
setInterval(function() {
$.ajax({
url: 'data.php',
success: function(data) { document.title = data;},
dataType: 'text'
});
}, 15000);
但由于对服务器的查询量,它似乎会减慢服务器的速度。
是否有另一种方法可以在标题栏中显示未读消息的数量,而不会造成过载?
Currently I use this...
setInterval(function() {
$.ajax({
url: 'data.php',
success: function(data) { document.title = data;},
dataType: 'text'
});
}, 15000);
But it seems to slow down the server due to the amount of queries to the server.
Is there another way of displaying the amount of unread messages in the title bar, without the overload?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
非常适合彗星(长轮询)!在后端添加一个Nodejs。
ideal for Comet (long polling)! Add a Nodejs in the backend.
我想到了这些解决方案:
These solutions come to my mind: