这是我的代码
var store = {
user_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']
})
})
};
store.user_store.load();
这是我的 json
{"roles":"2"}
我不想问。我如何获得角色的价值是“2”。
(PS:对不起,我的英文不太好。)