我创建了PWA(渐进式Web应用程序)。如果用户单击推送通知,则会在特殊页面上打开:
self.addEventListener('notificationclick', function (event) {
event.notification.close();
clients.openWindow("...");
});
如果用户使用浏览器并单击按钮,则此代码可进入主页:
window.location.replace('/');
但是,如果用户使用PWA,则此代码无效。如何进入PWA的主页?