關於這個原因有很多種,我只說下我遇到的
我這樣寫Store來復用的
DocStore = Ext.extend(Ext.data.Store,{
initComponent:function(){
this.proxy = new Ext.data.Httpxyxy( {url:this.url});
this.reader = new Ext.data.JsonReader(
{
totalProperty: 'results',
root: 'rows',
id: 'docid',
fields: ['docid', 'extention','docname', 'author', 'sizes', 'datecreated']
}
);
this .sortInfo = { field: 'datecreated', direction: 'DESC' };
this.remoteSort = false;
DocStore.superclass.initComponent.call(this);
}
});
這個Store寫出來之後是不會起到作用的
因為Ext.data.Store這個類別沒有繼承component 元件因此在初始化的時候不會調用initComponet方法的,
因此這裡面的設定項目也不會載入到Store裡面