1 回答
TA贡献1744条经验 获得超4个赞
更新了更多信息
这似乎是一个以多种方式表现出来的错误 - 声称在这里修复了一个不相关的来源 - https://bugs.chromium.org/p/chromium/issues/detail?id=792990
通知功能本身的选项并不多,您只能使用openWindow
创建或使用窗口来执行附加选项。
MDN 也承认 Chrome 面临的问题 - https://developer.mozilla.org/en-US/docs/Web/API/Clients/openWindow
这里有两种方法
打开或关注您的应用程序并添加
hash
哪些服务器作为单击通知的标记 - 这使您可以添加目标_top
或_blank
归功于MDN的伪代码
// Notification click event listener
self.addEventListener('notificationclick', e => {
// Close the notification popout
e.notification.close();
// Get all the Window clients
e.waitUntil(clients.matchAll({ type: 'window' }).then(clientsArr => {
// If a Window tab matching the targeted URL already exists, add a "#mailNotification"
const hadWindowToFocus = clientsArr.some(windowClient => windowClient.url === e.notification.data.url ? (windowClient.navigate(e.notification.data.url+"#mailNotification").then(function(client){client.focus()}), true) : false);
// Add additional code to add a
// Otherwise, open a new tab to the applicable URL and focus it.
if (!hadWindowToFocus) clients.openWindow(e.notification.data.url+"#mailNotification").then(windowClient => windowClient ?
windowClient.navigate(e.notification.data.url+"#mailNotification").then(function(client){client.focus()})
: null);
}));
// Then in your page, you can just use window.onhashChange event
window.onhashchange = weFixChromeLinks
function weFixChromeLinks () {
// ... Create an anchor tag that is formatted to your mailto has a target _top or _blank, hide the link and dispatch a click.
}
较早的方法
由于该clients.openWindow方法不提供以_top窗口为目标的能力,因此您可能必须设置一个支持 a 的中间页面_top- 即
// Your intermediate page
window.open('mailto...','_top')
结束语 问题本身很丑- 浏览器应该知道意图,例如:应用程序、邮件程序等 - 似乎 Chrome for android 将其视为另一个 URL 并且惨遭失败。
添加回答
举报