WebKit多个选项卡上的通知



我正在为我的应用使用 WebKit Notifications 。说我是否正在使用此代码:

var n = window.webkitNotifications.createNotification(
   'icon.png',
   'New Comment',
   'Praveen commented on your post!'
);
n.onclick = function(x) { window.focus(); this.cancel(); };
n.show();

PS 1:前五行实际上是一行。只是为了可读性,我已经发布了这种方式。

PS 2:有关完整代码,请参阅此信息:无法使用Google Chrome显示桌面通知。

我的问题是,如果我打开一个以上的选项卡怎么办?

说,当我的应用程序上出现新评论时,这是否会被解雇。如果我打开了一个以上的选项卡怎么办?这会产生许多通知吗?说,我打开了10 - 15选项卡,我收到了两个通知。将生成多少个通知,20 - 30

如果是这样,如何防止每个打开的选项卡多次生成单个通知?

您只需要指定"标签"选项以进行通知。标签中具有相同值的通知即使打开了许多标签,也仅显示一次。

例如:

var notification = new Notification('Hey!', {
    body : 'So nice to hear from you',
    tag : 'greeting-notify',
    icon : 'https://mysite.com/my_funny_icon.png'
});

标记通知的详细说明,因此只有最后一个出现在MDN文档网站上

代码的摘录[以防万一文档下降]

html

<button>Notify me!</button>

JS

window.addEventListener('load', function () {
  // At first, let's check if we have permission for notification
  // If not, let's ask for it
  if (Notification && Notification.permission !== "granted") {
    Notification.requestPermission(function (status) {
      if (Notification.permission !== status) {
        Notification.permission = status;
      }
    });
  }
  var button = document.getElementsByTagName('button')[0];
  button.addEventListener('click', function () {
    // If the user agreed to get notified
    // Let's try to send ten notifications
    if (Notification && Notification.permission === "granted") {
      for (var i = 0; i < 10; i++) {
        // Thanks to the tag, we should only see the "Hi! 9" notification
        var n = new Notification("Hi! " + i, {tag: 'soManyNotification'});
      }
    }
    // If the user hasn't told if he wants to be notified or not
    // Note: because of Chrome, we are not sure the permission property
    // is set, therefore it's unsafe to check for the "default" value.
    else if (Notification && Notification.permission !== "denied") {
      Notification.requestPermission(function (status) {
        if (Notification.permission !== status) {
          Notification.permission = status;
        }
        // If the user said okay
        if (status === "granted") {
          for (var i = 0; i < 10; i++) {
            // Thanks to the tag, we should only see the "Hi! 9" notification
            var n = new Notification("Hi! " + i, {tag: 'soManyNotification'});
          }
        }
        // Otherwise, we can fallback to a regular modal alert
        else {
          alert("Hi!");
        }
      });
    }
    // If the user refuses to get notified
    else {
      // We can fallback to a regular modal alert
      alert("Hi!");
    }
  });
});

相关内容

  • 没有找到相关文章

最新更新