2011-12-20 108 views
0

我有2個選項來創建存儲和跨我的應用程序使用它,但我不能決定哪個是最好的或者爲什麼: 我可以使用:煎茶觸摸:聲明商店

Ext.regStore('CustomerList', { 

,並使用

store:'CustomerList', 

Ext.StoreMgr.get('CustomerList') 

OR

HSA.stores.CustomerList = new Ext.data.Store({ 

及用途:

HSA.stores.CustomerList 

哪一個是要處理存儲的最佳方式和爲什麼(在這種情況下)? 歡呼

賈森·羅傑斯

回答

0

我使用MVC與煎茶觸摸和創建/訪問我的商店按以下方式:

Ext.regStore('Updates', { }); 

var updatesStore = Ext.getStore("Updates"); 

需要注意的是,當我不使用MVC,我創建商店以相同的方式,但通過使用應用程序的命名空間訪問它:

app.stores.updates.load();