1

我使用HTML5PhoneGap

在应用程序中,我有本地通知。

下面是代码:

本地通知

本地通知的 Android 实现使用与现有 iOS本地通知插件类似的接口。 该插件依赖于 Android AlarmManagerNotification Bar的组合。

这是我的js:

function appReady() {
    alert('Start appReady');
    var LN = cordova.require("cordova/plugin/LocalNotification");
    alert('LN');
    LN.add({
        date: new Date(2012, 10, 11, 15, 20, 0, 0),
        message: "DeviceReady",
        ticker: "This is a sample ticker text",
        repeatDaily: false,
        id: 1
    });
    alert('End appReady');
}

不会出现警报“LN”。

这是我在 config.xml 文件中的插件:

<cordova>
    <access origin="http://127.0.0.1*"/> <!-- allow local pages -->
    <access origin=".*"/>

    <log level="DEBUG"/>
    <preference name="useBrowserHistory" value="true" />
    <preference name="exit-on-suspend" value="false" />

    <plugins>
       ...
      <plugin name="LocalNotification" value="org.apache.cordova.plugins.LocalNotification"/>
    </plugins>
</cordova>

看起来JS不知道插件,有人可以帮忙吗?

4

1 回答 1

0

您应该使用 navigator.notification.alert

这可以在文档中找到

于 2013-01-14T08:45:52.017 回答