我從我的商店加載此數據。任何人都可以解釋我如何動態加載數據。通過使用Ajax。如何在extJS網格中獲取JSON數據
我的代碼
Ext.create('Ext.data.Store', {
storeId: 'simpsonsStore',
fields:[ 'name', 'email', 'phone'],
data: [
{ name: 'Lisa', email: '[email protected]', phone: '555-111-1224' },
{ name: 'Bart', email: '[email protected]', phone: '555-222-1234' },
{ name: 'Homer', email: '[email protected]', phone: '555-222-1244' },
{ name: 'Marge', email: '[email protected]', phone: '555-222-1254' }
]
});
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
store: Ext.data.StoreManager.lookup('simpsonsStore'),
columns: [
{ text: 'Name', dataIndex: 'name' },
{ text: 'Email', dataIndex: 'email', flex: 1 },
{ text: 'Phone', dataIndex: 'phone' }
],
height: 200,
width: 400,
renderTo: Ext.getBody()
});
現在的數據,我會提出一些JSON文件。我的問題是如何在extJS網格商店中獲取JSON數據。如何重寫STORE代碼
嗨大衛是指例如與交代此鏈接: http://stackoverflow.com/questions/10918030/loading-data-from-a-json-file-成,ExtJS的 – Tejas