phonegap状态栏通知如何在应用关闭后每天重复发送10次离线通知?

时间:2015-07-14 11:49:50

标签: cordova notifications background-service

我已经使用过phonegap状态栏通知插件。

它运作正常,但我希望在应用关闭后收到通知。它会在应用关闭后仅提供3-5小时的通知,但我想让他们每天重复10次,连续10天离线。

1 个答案:

答案 0 :(得分:0)

@Katzer有一个插件,它具有您需要的所有功能。

Cordova Local Notification Plugin - by Katzer

因此,此插件能够将预定的消息发送给用户。因此你需要设置......比如这个javascript代码提醒(用户可自定义的日期/时间):

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

此示例代码是应用程序每周向用户发送的预定通知。

更多信息可以在精彩的文档中找到。