我正在使用ExtJS 4.2,我在MySql数据库中有一些记录。我的问题是:如何创建一个显示数据库中记录的网格? 我尝试在servlet中使用ResultSet从数据库中检索记录,但我不知道如何从那里继续。
如何使用数据库中的记录填充网格中的字段?
我是ExtJS的新手,我发现很难找到解决方案。这与store
字段有关吗?如果是这样,我如何实现上述要求?
答案 0 :(得分:2)
您需要创建存储,绑定到网格,然后从服务器加载数据。确定你需要后端这个 ExtJS4不提供任何工具来处理数据库 例如(taken from 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
});
});
主要思想是 - 模型用于定义记录和验证的结构(读取它here),存储 - 用于存储和获取(通过解析来自服务器的响应或本地定义的数据)与模型匹配的记录结构(Basic store),最后网格处理一些事件(如“加载”或“刷新”)并根据网格列保护更新行(docs)