Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 TideSDK 的新手,我正在尝试使用 addConnectivityListener() 检查我的桌面应用程序上的互联网连接,阅读了很多信息,但仍然无法使其正常工作。你能帮我吗,我需要怎么开火,或者它不起作用?
谢谢
@Egor 对于连接,建议您使用以下内容:
if (navigator.onLine) { // do something } else { // do something else }
这是一篇不错的文章,可以为您提供一些关于在线/离线应用程序的好主意:
http://hacks.mozilla.org/2010/01/offline-web-applications/