如何使用 Cordova 显示状态栏通知 - Android 和 IOS

How to show status bar notification using Cordova - Android and IOS

我通读了许多关于状态栏通知的博客和 Whosebug 线程,并且大多数博客都使用插件 https://github.com/phonegap/phonegap-plugins/tree/master/Android/StatusBarNotification

但这给出了 404 错误。我没有找到任何其他有效的插件来执行此操作。

我需要让下面的代码工作。我需要使用什么插件?

window.plugins.statusBarNotification.notify("Notification", "Registered with Server");

谢谢

我使用以下插件和代码片段解决了我的问题。

de.appplant.cordova.plugin.local-notification

cordova.plugins.notification.local.schedule({
    id: 1,
    title: "Production Jour fixe",
    text: "Duration 1h",
    firstAt: monday_9_am,
    every: "week",
    sound: "file://sounds/reminder.mp3",
    icon: "http://icons.com/?cal_id=1",
    data: { meetingId:"123#fg8" }
});

cordova.plugins.notification.local.on("click", function (notification) {
    joinMeeting(notification.data.meetingId);
});

谢谢。

您要查找的 link 已移至其他位置,此处 -->StatusBarNotification 已弃用

因此,根据您更新的答案,您使用的是正确的插件。

我为 iOS 制作了一个基于 CWStatusBarNotification 的插件,如果你需要你可以使用它 CordovaStatusBarNotification