Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在两个组件之间共享存储?
第一个组件应该使用完整存储,第二个组件应该使用过滤存储。
如果我在第二个组件中过滤存储,则存储也在第一个组件中过滤。
在这种情况下,您将需要创建商店的第二个副本:
var newStore = new Ext.data.Store({}); newStore.loadData(oldStore.getRange()); // Do filter