3

当我尝试从控制器获取已加载的存储时,我得到了 null。加载也是成功的。我证实了这一点。

我有如下商店。

Ext.define('GridApp.store.schemedatastore',{
    extend: 'Ext.data.Store',
    model: 'GridApp.model.schemedatamodel',
    autoLoad: true,
    alias: 'store.schemedata',
    storeId: 'schemedatastoreid',
    constructor:function(){
        console.log('Calling parent');
        this.callParent(arguments);
        },
    listeners: {
        load:function(store,records,isSuccessful){
            if(isSuccessful){
                console.log('Load successful');
            }
            console.log(records[0].get('name'));
            console.log('scheme Data store loaded too.');
        },
    }
});

在我的控制器中,我添加了喜欢,

stores: ['schemesstore',
             'schemedatastore'],

我尝试在控制器中以这两种方式访问​​,

Ext.getStore('schemedatastoreid');它返回 null 并 this.getschemedatastoreStore();表示它是控制器中的未定义函数。

我在这里错过了什么吗?

4

1 回答 1

5

尝试以下任何一种:

this.getSchemedatastoreStore()

// the non-alias version of getStore    
Ext.StoreManager.lookup('schemedatastoreid') 

// in case MVC behavior overrides your storeId config
Ext.StoreManager.lookup('schemedatastore') 

如果您没有定义自己的,MVC 模式将自动为您的商店提供商店类名称作为商店 ID。

因此,如果您删除storeId: 'schemedatastoreid'配置,那么您将自动获得 storeId 的schemedatastore. 我通常不给 MVC 商店一个单独的storeId配置,所以我不知道它是否会在某处引起冲突。我通常也不会给我的商店起别名,这也可能导致该getStore功能出现一些困难。

于 2012-08-21T15:30:42.527 回答