这是我的代码
var store = {
roles_store: new Ext.data.Store({
autoLoad: false,
proxy: new Ext.data.HttpProxy({
url: 'a/b/c',
}),
remoteSort: true,
baseParams: {
},
reader: new Ext.data.JsonReader({
totalProperty: 'total',
root: 'root',
fields:['roles']
}),
})
};
这是我的 json
{"total":3,"root":[{"roles":"A"},{"roles":"B"},{"roles":"C"}]}
如果我想将数据添加到 Ext.data.Store。我能怎么做?
(PS:对不起,我的英文不好。而我的extjs是:http://docs.sencha.com/ext-js/3-4/#!/api/Ext.data.Store-method-addSorted)