通知:重新通知属性

安全上下文:此功能仅在 安全上下文(HTTPS)中可用,在某些或所有 支持的浏览器 中可用。

实验性:这是一个 实验性技术
在生产环境中使用此功能之前,请仔细查看 浏览器兼容性表

注意:此功能在 Web 工作线程 中可用。

renotifyNotification 接口的只读属性,它指定在新的通知替换旧的通知后,是否应通知用户,如 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 表仅在浏览器中加载

另请参阅