我正在尝试在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。
或还有其他解决方案可以发送本地通知
我使用以下插件:https://github.com/katzer/cordova-plugin-local-notifications
当我通过PhoneGap应用程序测试插件时,它无法正常工作,但是在构建Android APK之后,它的工作正常。
尝试使用此插件。
<plugin spec=" https://github.com/acianti/cordova-plugin-local-notifications.git" />