如何在PWA中打开主页?

时间:2019-01-29 18:04:44

标签: javascript jquery progressive-web-apps

我创建了PWA(渐进式Web应用程序)。如果用户单击推送通知,则会在特殊页面上打开:

self.addEventListener('notificationclick', function (event) {
    event.notification.close();
    clients.openWindow("...");
});

如果用户使用浏览器并单击按钮,则此代码可进入主页:

window.location.replace('/');

但是,如果用户使用PWA,则此代码无效。如何进入PWA的主页?

0 个答案:

没有答案