0
煎茶觸摸2:爲什麼不調用load()和beforeload()?
這是我店的定義
var incidentsJson = loadJson();
Ext.define("App.store.EventsFeed", {
extend: "Ext.data.Store",
requires: ['Ext.data.proxy.JsonP'],
config: {
listeners: {
beforeload: function() {
console.log('before store load');
return true;
},
load: function(store, records) {
console.log(' store loaded', records);
}
},
model: 'App.model.Incident',
autoLoad: true,
data: incidentsJson,
reader: {
type: 'json',
}
}
});
數據被加載但load()
和beforeload()
不`噸被調用,這是怎麼回事?
不知道爲什麼,但顯然只存儲調用'的load()'和'beforeload()'只有當你通過代理財產加載數據... – Felipe