我是sencha-touch的新手。我想知道如何在sencha-touch中正确使用文件结构。例如,在app文件夹下有你的控制器,型号,配置文件,存储,视图文件夹。如果我定义商店,例如在商店文件夹下,我创建一个名为search.js
的文件Ext.define('Volunteer.store.search'{
extend: 'Ext.data.Store',
requires: ['Volunteer.model.person'],
config:{
model: 'Volunteer.model.person'
}
});
如何在不同的文件中使用此商店?
答案 0 :(得分:1)
将您的商店添加到app.js文件stores: ['search']
和您调用Ext.getStore('search');
的其他文件中。如果未找到,则需要将search.js添加到index.html