我有2个选项可以创建商店并在我的应用中使用它,但我无法确定哪个最好或为什么: 我可以使用:
Ext.regStore('CustomerList', {
并使用
store:'CustomerList',
和
Ext.StoreMgr.get('CustomerList')
或
HSA.stores.CustomerList = new Ext.data.Store({
并使用:
HSA.stores.CustomerList
哪一个是处理商店的最佳方式以及为什么(以及在哪种情况下)? 欢呼声
杰森罗杰斯答案 0 :(得分:0)
我将MVC与Sencha Touch一起使用,并以下列方式创建/访问我的商店:
Ext.regStore('Updates', { });
var updatesStore = Ext.getStore("Updates");
请注意,当我不使用MVC时,我以相同的方式创建商店,但是使用应用程序的命名空间来访问它,如下所示:
app.stores.updates.load();