2

我正在使用 ExtJS 4.2,并且在 MySql 数据库中有一些记录。我的问题是:如何创建一个显示数据库中记录的网格?我尝试在 servlet 中使用 ResultSet 从数据库中检索记录,但我不确定如何从那里继续。

如何使用数据库中的记录填充网格中的字段?我是 ExtJS 的新手,我发现很难为此提出解决方案。这和store领域有关系吗?如果是这样,我该如何实现上述要求?

4

1 回答 1

2

您需要创建存储,绑定到网格,然后从服务器加载数据。并且确保您需要此ExtJS4 的后端不提供任何用于处理数据库的工具 例如(取自 sencha docs):

Ext.onReady(function(){
    Ext.define('Book',{
        extend: 'Ext.data.Model',
        proxy: {
            type: 'ajax',
            reader: 'xml'
        },
        fields: [
            // set up the fields mapping into the xml doc
            // The first needs mapping, the others are very basic
            {name: 'Author', mapping: '@author.name'},
            'Title', 'Manufacturer', 'ProductGroup'
        ]
    });

    // create the Data Store
    var store = Ext.create('Ext.data.Store', {
        model: 'Book',
        autoLoad: true,
        proxy: {
            // load using HTTP
            type: 'ajax',
            url: 'sheldon.xml',
            // the return will be XML, so lets set up a reader
            reader: {
                type: 'xml',
                // records will have an "Item" tag
                record: 'Item',
                idProperty: 'ASIN',
                totalRecords: '@total'
            }
        }
    });

    // create the grid
    Ext.create('Ext.grid.Panel', {
        store: store,
        columns: [
            {text: "Author", flex: 1, dataIndex: 'Author'},
            {text: "Title", width: 180, dataIndex: 'Title'},
            {text: "Manufacturer", width: 115, dataIndex: 'Manufacturer'},
            {text: "Product Group", width: 100, dataIndex: 'ProductGroup'}
        ],
        renderTo:'example-grid',
        width: 540,
        height: 200
    });
});

主要思想是 - 模型用于定义记录和验证的结构(在此处阅读),存储 - 用于存储和获取(通过解析来自服务器或本地定义的数据的响应)匹配模型结构(基本存储)的记录,最后网格处理一些事件(如“加载”或“刷新”)并根据网格列定义更新行(文档

于 2013-10-10T13:59:12.410 回答