sencha touch / PhoneGap - 数据库

发布于 2024-12-25 16:28:07 字数 144 浏览 0 评论 0原文

我正在开发一个应用程序,需要列出国家和城市。这显然可能是一个相当大的数据库 - 存储这些数据的最佳方式是什么?

我不想使用远程数据库,因为我希望该应用程序可以离线使用。

我对任何格式持开放态度(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

姐不稀罕 2025-01-01 16:28:07

使用 Sencha Touch 的模型和存储功能读取 json Web 服务或文件并将其提供给您的视图。

Ext.regModel('Product', {
    fields: [
        {name: "id", type: "int"},
        {name: "pid", type: "int"},
        {name: "type", type: "string"},
        {name: "status", type: "string"},
        {name: "title", type: "string"},
        {name: "content", type: "auto"},
        {name: "date", type: "string"},
        {name: "modified", type: "string"}  
    ]
});


MVCApp.ProductStore = new Ext.data.Store({
    model: 'Product',
    autoLoad: true,
    storeId: 'ProductStore',
    proxy: {
        type: 'ajax',
        id: 'ProductStore',
        url: 'data/nestedProducts.json',
        reader: {
            root: 'items'
        }
    }
});

Use Sencha Touch's Model and Store functionality to read a json web service or file and make it available to your views.

Ext.regModel('Product', {
    fields: [
        {name: "id", type: "int"},
        {name: "pid", type: "int"},
        {name: "type", type: "string"},
        {name: "status", type: "string"},
        {name: "title", type: "string"},
        {name: "content", type: "auto"},
        {name: "date", type: "string"},
        {name: "modified", type: "string"}  
    ]
});


MVCApp.ProductStore = new Ext.data.Store({
    model: 'Product',
    autoLoad: true,
    storeId: 'ProductStore',
    proxy: {
        type: 'ajax',
        id: 'ProductStore',
        url: 'data/nestedProducts.json',
        reader: {
            root: 'items'
        }
    }
});
一页 2025-01-01 16:28:07

您可以使用本地 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文