有没有更有效的方法在页面标题中显示未读消息数?

发布于 2024-12-05 15:00:38 字数 288 浏览 1 评论 0原文

目前我使用这个......

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 技术交流群。

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

发布评论

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

评论(2

眼角的笑意。 2024-12-12 15:00:39

非常适合彗星(长轮询)!在后端添加一个Nodejs。

ideal for Comet (long polling)! Add a Nodejs in the backend.

甜中书 2024-12-12 15:00:38

我想到了这些解决方案:

  1. 使用服务器发送的事件(这当然会降低可扩展性,因为打开网络连接)
  2. 使用页面可见性
  3. 彗星编程
  4. 根据用户的需求明确提供此功能(这样许多用户甚至不会请求为了它)

These solutions come to my mind:

  1. Using Server-Sent Events (Which of course, reduces scalability due to open network connections)
  2. Using Page Visibility
  3. Comet programming
  4. Explicitly offering this feature on user's demand (so that many users won't even request for it)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文