0

我很难尝试解决以下问题。我有一家店

Ext.define('aBMin.store.Email', {
extend : 'Ext.data.Store',
requires : ['aBMin.model.Email'],
config : {
    autoLoad : true,
    model : 'aBMin.model.Email',
    remoteFilter : true,
    proxy : {
        type : 'direct',
        extraParams : {
            filter : 'unassigned'
        },
        directFn : ClientemailTable.getListMobile,
        config : {
            paramsAsHash : true,
            reader : {
                type : 'json'
                ,rootProperty : 'result'
                ,successProperty: 'success'
                ,totalProperty: 'totalCount'
            }
        }
    }
}
});

并且正在将以下 json 加载到其中:

[{"totalCount":8,"result":[],"tid":10,"method":"getListMobile","action":"ClientemailTable","type":"rpc"}]

除了存储的“totalCount”属性外,所有内容都已正确加载。当我尝试在 Chrome 的控制台中检索时,它会打印“null”。

注意: “结果”属性已正确加载,因此在这种情况下,我将其显示为空数组。

Ext.getStore('Email').getTotalCount()
> null

我使用煎茶触摸 2.0。有什么想法如何使用它吗?

4

0 回答 0