sencha touch / PhoneGap - 数据库
我正在开发一个应用程序,需要列出国家和城市。这显然可能是一个相当大的数据库 - 存储这些数据的最佳方式是什么?
我不想使用远程数据库,因为我希望该应用程序可以离线使用。
我对任何格式持开放态度(xml、javascript 数组、cvs 等)
I am developing an app that will need to list countries and then cities. This could obviously be quite a large database - what is the best way to store this data?
I don't want to use a remote database as I would like the app to be useable offline.
I'm open to any format (xml, javascript array, cvs etc)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Sencha Touch 的模型和存储功能读取 json Web 服务或文件并将其提供给您的视图。
Use Sencha Touch's Model and Store functionality to read a json web service or file and make it available to your views.
您可以使用本地 json 文件并通过 sencha touch store (Ext.data.Store) 访问该文件。
You could use a local json file and access this one with a sencha touch store (Ext.data.Store).