Android 2.1 上的 navigator.onLine 是否存在已知问题?
Android 2.1 上的 navigator.onLine 是否存在已知问题?我有一个处于飞行模式的 Droid,但 navigator.onLine 似乎无论如何都会返回 true。 (我使用 HTML 清单来缓存页面,其行为在 Mobile Safari 和 Firefox 的离线模式下运行良好。)
Are there known issues with navigator.onLine on Android 2.1? I have a Droid on airplane mode, but navigator.onLine appears to be returning true anyway. (I'm using an HTML manifest to cache the page, and its behavior works fine in Mobile Safari and Firefox in offline mode.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,据我所知,navigator.onLine 在 Droid 2.1 上总是返回 true。我认为这个问题已经在 2.2 中得到解决,同时还有许多其他与离线相关的 API,包括连接类型的新 navigator.connection 枚举、当前使用的连接的 navigator.connection.type 以及“ononline”和“onoffline” ” 事件。
可以在此处找到对此的简短描述
Yes as far as I've been able to tell, navigator.onLine always returns true on Droid 2.1. I think that this issue has been addressed in 2.2 along with a number of other offline-related APIs including a new navigator.connection enumeration of connection types, navigator.connection.type for the current connection in use, plus "ononline" and "onoffline" events.
Short description of this can be found here