应用启动时远程更新intel xdk更新文件

时间:2014-12-17 05:25:37

标签: android ios html5 intel-xdk

我想在本地为没有互联网连接的用户创建应用程序,因此当用户连接并打开应用程序时,应用程序将检查更新,应用程序将从服务器更新它。

例如全球石油展2014应用。

我非常感谢您帮助解决问题。

1 个答案:

答案 0 :(得分:2)

您可以定期对网络访问进行条件测试(例如在应用启动时),甚至是determining the connection type with the device API

然后使用getRemoteDataExt method和附带的事件监听器来检索远程数据。

最后,在处理完检索到的数据后,您可以将其存储在本地,大多数easily using the cache API and its setCookie method

然后,通过简单的getCookie调用,可以随时访问最近缓存的数据版本,无论是否有网络连接。