我如何在 cordova-plugin-local-notification 中查看已经安排好的通知?

How can i view already scheduled notifications in cordova-plugin-local-notification?

我使用 cordova 插件本地通知在我的应用程序中设置提醒,它工作正常,但我可以查看已经安排好的通知吗?。在我的 README.md 中,我可以看到 getScheduled 方法,但没有说明如何使用它。

 var callbackIds = function (ids) {
                                     alert(ids);
                                    navigator.notification.alert(ids.length === 0 ? '- none -' : ids.join(' ,'));

                                };

                                getIds = function () {
                                    cordova.plugins.notification.local.getIds(callbackIds);
                                };

                                function getScheduledIds() {
                                    cordova.plugins.notification.local.getScheduledIds(callbackIds);
                                }


                                getTriggeredIds = function () {
                                    cordova.plugins.notification.local.getTriggeredIds(callbackIds);
                                };