ExtJS - 将存储添加到实用程序 class
ExtJS - Add store to utility class
我应该如何在 ExtJS 6.2.1 的实用程序 class 中使用存储?
在 Grid 组件中,只需要做:
Ext.define('App.MyGrid', {
extend : 'Ext.grid.Grid',
store : 'myStore',
});
如果我在 class 中这样做:
Ext.define('App.MyClass', {
singleton : true,
store : 'myStore',
});
那么 store
只是一个字符串。
您可以使用:
Ext.StoreManager.lookup(STORE_NAME)
我应该如何在 ExtJS 6.2.1 的实用程序 class 中使用存储?
在 Grid 组件中,只需要做:
Ext.define('App.MyGrid', {
extend : 'Ext.grid.Grid',
store : 'myStore',
});
如果我在 class 中这样做:
Ext.define('App.MyClass', {
singleton : true,
store : 'myStore',
});
那么 store
只是一个字符串。
您可以使用:
Ext.StoreManager.lookup(STORE_NAME)