1

控制台很清楚。网格为空(仅显示列标题)。如何检查数据是否正确加载到商店?在我看来,商店的 autoLoad 方法没有以某种方式触发。这是网格:

Ext.define('NameSpace.view.Clients', {
    requires: [
        'Ext.tree.Panel',
        'Ext.grid.Panel'        
    ],
    extend: 'Ext.tab.Panel',
    title: 'Clients',
    alias: 'widget.viewClients',    

    items: [
        {
            xtype: 'panel',
            title: 'All Clients',            

            layout: {
                type: 'hbox',
                align: 'stretch'
            },

            items: [
                {
                    xtype: 'treepanel',
                    title: 'Tree Panel',
                    width: 200,
                    resizable: true                    
                },
                {
                    xtype: 'gridpanel',
                    title: 'Clients List',

                    store: Ext.getStore('storeClients'),

                    flex: '1',
                    columns: [                        
                        { text: 'Name', dataIndex: 'first_name' },
                        { text: 'Last Name', dataIndex: 'last_name' },
                        { text: 'Phone Number', dataIndex: 'phone' }
                    ]
                }
            ]
        }
    ],

    initComponent: function () {
        this.callParent(arguments);
    }
});

这是商店(模型只包含扩展和字段配置):

Ext.define('NameSpace.store.Clients', {
    extend: 'Ext.data.JsonStore',

    proxy: {
        type: 'ajax',
        url: 'http://test.local/client',
        reader: {
            type: 'json',
            root: 'records' 
        }
    },

    autoLoad: true,

    constructor: function (config) {
        this.initConfig(config);
    }
});

Ext.create('NameSpace.store.Clients', {
    model: 'Clients',
    storeId: 'storeClients'    
});
4

4 回答 4

1

为什么要覆盖存储构造函数?如果你真的需要这样做,你应该添加this.callParent(arguments)到构造函数中,否则原来的构造函数(它做了很多)将不会运行。

于 2013-07-14T15:51:19.187 回答
1

移动

model: 'Clients',
storeId: 'storeClients'

进入商店定义,并摆脱商店创建调用。商店将自动创建。

于 2013-07-14T15:07:50.097 回答
0

You just need to change

 store: Ext.getStore('storeClients')

To This :

store: 'Clients'
于 2014-03-11T06:09:52.503 回答
0

我认为您需要在创建商店时编写字段。IE

fields:[ 'first_name', 'last_name', 'phone']
于 2017-07-22T09:44:01.130 回答