通知API,多次显示

时间:2016-07-12 19:05:58

标签: javascript php jquery html facebook

我正在使用chrome(Mozilla等)通知API:

Notification.requestPermission(function (permission) {
                    // Whatever the user answers, we make sure we store the information
                    if (!('permission' in Notification)) {
                        Notification.permission = permission;
                    }

                    // If the user is okay, let's create a notification
                    if (permission === "granted") {
                        var options = {
                            body: data.nome + ': ' + data.corpo,
                            icon: data.img,
                            dir : "ltr"
                        };
                        var notification = new Notification("Weeazy",options);
                    }
            });

当我打开2个或更多窗口时,通知会多次显示(每个窗口1个)。 有人知道我怎么能阻止这个?我只想显示1个通知,即使打开2个或999个窗口,就像Facebook一样。我希望我的代码示例可以提供帮助!谢谢!

0 个答案:

没有答案