PhoneGap Android:navigator.notification.alert没有显示

时间:2013-10-09 06:20:13

标签: cordova

我的问题是警告永远不会显示在navigator.notification.alert上......但是当我window.alert时显示警告...

请参阅以下代码:

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
    document.addEventListener("deviceready", onDeviceReady, true);
    function onDeviceReady() {
        // Empty
    }
    function myFunction()
    {
       /* navigator.notification.alert(
                'You are the winner!',  // message
                alertDismissed,         // callback
                'Game Over',            // title
                'Done'                  // buttonName
        );*/             // NOT WORKING
        window.alert  ('Hello World!') ; // WORKS !!

    }
</script>
</head>
   <body>
   <button onclick="myFunction()">Try it</button>
   </body>
   </html>

2 个答案:

答案 0 :(得分:2)

要使用通知,您必须安装通知插件。 在您的phonegap根目录中导航并键入:

phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git

从现在开始,您应该可以使用通知提醒。 :)

答案 1 :(得分:1)

你有没有把

   <plugin name="Notification" value="org.apache.cordova.Notification"/>
在app / res / xml / config.xml中