Get a particular value from Store in Sencha Touch?
问题 I've created a model with following structure: Model Code: Ext.define('MyApp.model.FavoriteScreen', { extend: 'Ext.data.Model', config: { fields: [ { name: 'Name' }, { name: 'ScreenId' } ] } }); And I've created a store with following structure: Store code: Ext.define('MyApp.store.FavoriteStore', { extend: 'Ext.data.Store', requires: [ 'MyApp.model.FavoriteScreen' ], config: { autoLoad: true, model: 'MyApp.model.FavoriteScreen', storeId: 'FavStore', proxy: { type: 'ajax', api: { read: '/api