pushSubscription.endPoint随时间变化吗?

时间:2018-01-29 17:45:40

标签: javascript reactjs service-worker progressive-web-apps

我正在尝试向多个用户发送推送通知。在第一次加载页面时,我将为用户订阅Push API并获取EndPoint并将其存储在数据库中以发送推送通知。

我是否需要不断检查PushSubscription.Endpoint并更新数据库?还是修好了?

1 个答案:

答案 0 :(得分:0)

端点可以更改,例如订阅可能会过期(https://developer.mozilla.org/en-US/docs/Web/API/PushSubscription/expirationTime)。

您不必经常检查它是否发生变化,当发生变化时会触发事件:https://developer.mozilla.org/en-US/docs/Web/Events/pushsubscriptionchange

另请查看有关如何强制触发事件的相关问题:How can I test pushsubscriptionchange event-handling code?