Ext.create('Ext.data.Store', {
proxy, // set properly
listeners: {
load: (store, records, success, operation) => {
let response = operation.getResponse();
// now you can access responseJson or responseText and decode it - depends on your ext version and proxy config
}
}
});
1条答案
按热度按时间2o7dmzc51#
有几种选择可以实现这一点。
让我们关注存储。这取决于它是代理存储还是缓冲存储。
在第一种情况下,例如使用加载事件。或者如果它是缓冲的,使用预取事件。
这里有一个例子。
字符串