window.location.reload() 在 PhoneGap 1.4 / Android Honeycomb 3.2.1 上导致应用程序错误

发布于 2025-01-06 01:27:23 字数 200 浏览 1 评论 0原文

为什么 Android 3 上的 window.location.reload() === instant_fail ?我刚刚收到一个应用程序错误弹出窗口,其中包含应用程序的 file:///... URL,并且必须重新启动。我尝试过重写 DroidGap.onReceivedError() 但它只是尝试重复重新加载自身,但失败了。

Why does window.location.reload() === instant_fail on Android 3? I just get an Application Error popup with the file:///... URL of my application, and have to restart. I've tried overriding DroidGap.onReceivedError() but it just tries and fails to reload itself repeatedly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绻影浮沉 2025-01-13 01:27:23

我不确定您是否仍然需要这个答案,但这可能会对某人有所帮助。我在 Android 3 上运行 PhoneGap 时遇到了同样的问题。我通过将此行替换

location.reload(true);

为以下内容解决了这个问题:

navigator.app.loadUrl('file:///android_asset/www/index.html');

I'm not sure if you still need an answer to this, but this might help someone. I encountered the same problem with PhoneGap running on Android 3. I solved it by replacing this line:

location.reload(true);

with this:

navigator.app.loadUrl('file:///android_asset/www/index.html');
⒈起吃苦の倖褔 2025-01-13 01:27:23

与设备无关的解决方案是使用:

window.location = 'index.html';

A device agnostic solution would be to use:

window.location = 'index.html';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文