PhoneGap:离线应用程序使用
PhoneGap: Offline App Use
我目前正在使用 PhoneGap 开发应用程序。我目前拥有的是我的应用程序从网上提取信息,例如来自某个用户帐户的推文,并在其中一个页面上显示提要。
如果用户未连接到 Internet,我希望此页面可供离线使用,但它会在他们下次连接时更新 Twitter 提要。实现此功能的最佳方法是什么?
你可以使用浏览器的localStorage
——它可以处理各种数据,只要不超过±10MB. PhoneGap has some documentation这个。因为这是一项 HTML5 功能,您也可以 test/debug 在桌面浏览器中执行此操作(这通常比调试 PhoneGap 应用程序本身更容易)。
还有其他选项,例如SQLite plugin but this is probably too heavy for your intended use. An overview of more available options can be found here。
我目前正在使用 PhoneGap 开发应用程序。我目前拥有的是我的应用程序从网上提取信息,例如来自某个用户帐户的推文,并在其中一个页面上显示提要。
如果用户未连接到 Internet,我希望此页面可供离线使用,但它会在他们下次连接时更新 Twitter 提要。实现此功能的最佳方法是什么?
你可以使用浏览器的localStorage
——它可以处理各种数据,只要不超过±10MB. PhoneGap has some documentation这个。因为这是一项 HTML5 功能,您也可以 test/debug 在桌面浏览器中执行此操作(这通常比调试 PhoneGap 应用程序本身更容易)。
还有其他选项,例如SQLite plugin but this is probably too heavy for your intended use. An overview of more available options can be found here。