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

时间:2016-11-15 09:18:34

标签: android cordova push-notification cordova-plugins statusbar

我阅读了许多有关状态栏通知的博客和Stackoverflow主题,大部分博客都使用了插件https://github.com/phonegap/phonegap-plugins/tree/master/Android/StatusBarNotification

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

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

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

由于

3 个答案:

答案 0 :(得分:1)

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

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);
});

感谢。

答案 1 :(得分:0)

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

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

答案 2 :(得分:0)

我根据CWStatusBarNotification为iOS制作了一个插件,如果你想要你可以使用它 CordovaStatusBarNotification