Sencha Touch 2: 'specified Store cannot be found'
问题 I'm trying to load JSON data into a NestedList. I have the following store file in /app/store/Exhibits.js Ext.define('VisitTCMIndy.store.Exhibits',{ requires: ['VisitTCMIndy.model.Exhibit', 'Ext.data.proxy.JsonP'], extend: 'Ext.data.TreeStore', config: { model: 'VisitTCMIndy.model.Exhibit', proxy: { type: 'jsonp', url: 'http://www.example.com/explore.php', reader: { type: 'json', rootPropery: 'children' } } } }); Then I reference it in the following view in /app/view/Explore.js Ext.define(