通知:重新通知属性
注意:此功能在 Web 工作线程 中可用。
renotify
是 Notification
接口的只读属性,它指定在新的通知替换旧的通知后,是否应通知用户,如 Notification()
构造函数的 renotify
选项中指定。
值
布尔值。false
是默认值;true
将使通知重新通知用户。
示例
以下代码段旨在触发一个重新通知用户的通知;创建一个简单的 options
对象,然后使用 Notification()
构造函数触发通知。
js
const options = {
body: "Your code submission has received 3 new review comments.",
renotify: true,
};
const n = new Notification("New review activity", options);
console.log(n.renotify); // true
规范
规范 |
---|
通知 API 标准 # dom-notification-renotify |
浏览器兼容性
BCD 表仅在浏览器中加载