-3

谁能告诉我如何在 Sencha Touch 中使用数据库?

请建议一些代码或示例。

谢谢

4

1 回答 1

2

看看Ext.data.Store http://docs.sencha.com/touch/2.2.1/#!/api/Ext.data.Store

您不能直接使用数据库,您必须在前端和后端(服务器端或客户端后端,如 HTML5 Webstorage)之间实现这一层。

来自链接 sencha 文档的客户端示例:

// Set up a model to use in our Store
Ext.define("User", {
    extend: "Ext.data.Model",
    config: {
        fields: [
            {name: "firstName", type: "string"},
            {name: "lastName",  type: "string"},
            {name: "age",       type: "int"},
            {name: "eyeColor",  type: "string"}
        ]
    }
});

var myStore = Ext.create("Ext.data.Store", {
    model: "User",
    proxy: {
        type: "ajax",
        url : "/users.json",
        reader: {
            type: "json",
            rootProperty: "users"
        }
    },
    autoLoad: true
});

Ext.create("Ext.List", {
    fullscreen: true,
    store: myStore,
    itemTpl: "{lastName}, {firstName} ({age})"
});

服务器端取决于您的环境。如果您使用基于服务器的后端,请以您选择的编程语言实现 REST API。

为了在本地设备/浏览器上存储数据,您必须实现 LocalStorage 代理。http://docs.sencha.com/touch/2.2.1/#!/api/Ext.data.proxy.LocalStorage

于 2013-08-29T11:13:36.920 回答