1

尝试使用 Phonegap 2.3.0 在 Xcode 4.6 中使用 navigator.notification.alert() 时遇到一个奇怪的问题。

我有两个文件,index.html 和 other.html。单击 index.html 中的“测试警报”会按预期触发警报,但是在解除警报然后导航到 other.html 后,单击“测试其他警报”不会触发警报。

但是,如果您在 index.html 上单击“测试警报”两次或更多次,然后再转到 other.html,则警报将继续按预期运行。只有在触发警报 ONCE 并更改页面后,警报才会一起停止运行。

索引.html

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="cordova-2.3.0.js"></script>
        <script type="text/javascript" charset="utf-8">
            function alertTest() {
                navigator.notification.alert('Testing', null, 'Alert Test', 'OK');
            }
        </script>
    </head>
    <body>
        <a href='other.html'>Move to other page</a>
        <a href="#" onclick="alertTest(); return false;">Test the alert</a>
    </body>
</html>

其他.html

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="cordova-2.3.0.js"></script>
        <script type="text/javascript" charset="utf-8">
            function alertTest() {
                navigator.notification.alert('Testing', null, 'Alert Test', 'OK');
            }
        </script>
    </head>
    <body>
        <a href="index.html">Go back</a>
        <a href="#" onclick="alertTest(); return false;">Test the alert</a>
    </body>
</html>

我完全不知道为什么会发生这种情况,因为在我的应用程序中,我需要能够在不同页面上的按钮按下时触发警报,这在本示例中似乎是偶然发生的。

非常感谢任何朝着正确方向的帮助或推动!

更新:

这似乎只发生在 iOS 6 和 6.1 模拟器上。当警报没有弹出时,按主页键然后再次打开应用程序会使丢失的警报立即出现。

此示例也具有相同的行为:http ://docs.phonegap.com/en/2.3.0/cordova_notification_notification.md.html#Notification

谁能确认这是否只是最新 ​​Xcode 中的模拟器错误?

4

2 回答 2

1

由于 Phonegap 2.2 存在此问题,另请参阅: iOS 的 PhoneGap 中的通知 Phonegap 2.3 上 WindowsMo​​bile 上的相同问题。

我没有从 2.1 更新...似乎是它正常工作的最后一个版本。

不要忘记在document.addEventlistener("deviceready", onDeviceReady, true);上面添加。

于 2013-02-06T17:20:43.887 回答
0

更新到最新版本的 phonegap (2.4.0)。似乎可以解决问题。至少对我来说,现在一切正常。

于 2013-02-15T17:38:18.320 回答