尝试使用 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 中的模拟器错误?