小编Kal*_*ale的帖子

如何从 Service Worker 发送通知

我有一个 Service Worker 创建一个 Websocket 来监听通知,并且工作正常。我的问题是,当我尝试显示通知时,我无法显示。这是代码

function displayNotification(title, body, tag, url, actions) {
    if (Notification.permission == "granted") {
        if (title == undefined || title == null || title == "") title = "My site"
        if (body == undefined || body == null) body = ""
        if (tag == undefined || tag == "") tag = null
        if (url == undefined || url == null || url == "") url = "https://example.com/"
        if (actions == undefined || actions == null || …
Run Code Online (Sandbox Code Playgroud)

javascript notifications web-notifications service-worker

5
推荐指数
1
解决办法
2950
查看次数