假设我们遵循一篇原创文章http://www.sencha.com/learn/the-mvc-application-architecture并拥有这样的商店:
Ext.define('AM.store.Users', {
extend: 'Ext.data.Store',
model: 'AM.model.User',
autoLoad: true,
proxy: {
type: 'ajax',
url: 'data/users.json',
reader: {
type: 'json',
root: 'users',
successProperty: 'success'
}
}
});
我们决定实现一个无限滚动网格。为此,我们需要手动删除autoLoad: true
和调用。store.guaranteeRange(...)
那么这样做的最佳地点是什么?