我正在寻找一种将本地数据与 ajax 加载的数据结合在一个存储中的方法。我很难用英语解释这一点,我希望这段代码会更明确:
var store = Ext.create('Ext.data.Store', {
autoLoad: true,
fields: ['id', 'name'],
proxy: { type: 'ajax', api: { read: '/read' } },
data: [{ id: 1, name: 'John' }]
});
"/read" 返回的 Json : [{ id: 2, name: 'Jack' }]
.
期望的行为:store.count() // 2