javascript – 在extjs4中获取加载的商店

当我尝试从控制器获取加载的存储时,我变为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();这说它是控制器中未定义的功能.

我在这里错过了一些东西吗?

解决方法:

尝试以下任何一个:

this.getSchemedatastoreStore()

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

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

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

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

相关文章

我有一个问题,我不知道如何解决.我有一个Indy10HTTP服务器.我...
我正在使用sdk1.17开发一个Firefox附加组件.它包含一个带有按...
Ext.define('PhysicsEvaluationSystemV1.view.base.Bas...
默认所有列(假设列3最大3列,动态显示),使用headerRowsEx中...
序言   1.ExtJs是一套很好的后台框架。现在很流行的,我们...
我在ExtJs中有这个表单.如果field1不为空,则field2不能为空....