Extjs jsonreader 读到数据, 但是store.getCount()==0

var paramsStore = new Ext.data.Store({
        proxy: new Ext.data.HttpProxy({
            url : 'goodparam.ered?method=queryGoodparamList'
        }),    
        reader : new Ext.data.JsonReader({
            totalProperty : 'TOTALCOUNT', // 记录总数
            root : 'ROOT' // Json中的列表数据根节点
        },[
            {
                name: 'id'
            },
            {
                name: 'name'
            }
        ])
    });
paramsStore.load();/////firebug可以看到响应的有数据
////alert("数据条数:"+paramsStore.getCount());这里不行,该如下:
paramsStore.on('load',function(){alert(paramsStore.getCount());})

你可能感兴趣的:(Extjs jsonreader 读到数据, 但是store.getCount()==0)