我正在使用ExtJs 4.2.1版本。我在remoteFilter
中将true
添加到store
后,我的网格加载了3次。
Ext.define('PM.store.Orgs', {
extend: 'Ext.data.Store',
model: 'PM.model.org',
autoLoad: false,
remoteFilter: true,
sorters: ['orgId'],
proxy: {
type: 'ajax',
api: { read: 'api/org/findByOrgId' },
reader: { type: 'json' }
}
});
添加remoteFilter:true
后,加载了3次。
答案 0 :(得分:0)
不对我的代码进行任何更改,现在只加载一次。看起来非常奇怪的行为。 实际上我想将远程过滤器功能应用于网格。但是我能够通过在网格中将本地标志设置为false并且不添加远程过滤器标志来存储来实现它。 谢谢