Phonegap / Cordova中的本地通知

时间:2017-12-26 08:22:18

标签: cordova phonegap-plugins cordova-plugins phonegap phonegap-pushplugin

我正在尝试在Phonegap上使用本地通知。我使用phonegap-plugin-local-notification 1.0.1“phonegap-plugin-local-notification”并使用以下代码对其进行测试(在设备就绪状态下):

        if ("Notification" in window) {
        Notification.requestPermission(function (permission) {
            // If the user accepts, let's create a notification
            if (permission === 'granted') {
                var notification = new Notification("My title", {
                    tag: 'message1',
                    body: "My body"
                });
                notification.onshow  = function() { console.log('show'); };
                notification.onclose = function() { console.log('close'); };
                notification.onclick = function() { console.log('click'); };
            }
        });
    }

我得到的是通知不在窗口中。有没有人知道如何使用这个插件,或者我应该向config.xml添加任何内容。

或者是否有其他解决方案可以发送本地通知

2 个答案:

答案 0 :(得分:0)

我使用了以下插件: https://github.com/katzer/cordova-plugin-local-notifications

虽然我在Phonegap应用程序上测试了插件但它没有工作但是在构建android apk后它工作得很好。

答案 1 :(得分:0)

尝试使用此插件。适用于android和Ios。

<plugin spec=" https://github.com/acianti/cordova-plugin-local-notifications.git" />