chrome.notifications API 的 NotificationOptions 中的 eventTime 的目的是什么?
what's the purpose of eventTime in NotificationOptions of chrome.notifications API?
当 creating a notification from an extension using chrome.notifications
API, the NotificationOptions: eventTime
似乎被忽略时,因为通知是立即创建的,应该延迟为 eventTime
设置的毫秒数。根据文档:
eventTime
A timestamp associated with the notification, in milliseconds past the epoch (e.g. Date.now() + n).
虽然没有明确说明这会导致通知的创建延迟eventTime
中设置的毫秒数,那么这个选项的目的是什么?
我发现几年前有人问过类似的问题:Chrome notification ignoring eventTime 但上面的问题没有在那里得到回答。相反,解决方案是讨论其他方法(setTimeout
、chrome.alarms
)来延迟通知的创建。
当 creating a notification from an extension using chrome.notifications
API, the NotificationOptions: eventTime
似乎被忽略时,因为通知是立即创建的,应该延迟为 eventTime
设置的毫秒数。根据文档:
eventTime
A timestamp associated with the notification, in milliseconds past the epoch (e.g. Date.now() + n).
虽然没有明确说明这会导致通知的创建延迟eventTime
中设置的毫秒数,那么这个选项的目的是什么?
我发现几年前有人问过类似的问题:Chrome notification ignoring eventTime 但上面的问题没有在那里得到回答。相反,解决方案是讨论其他方法(setTimeout
、chrome.alarms
)来延迟通知的创建。