ExtJS -将存储添加到实用程序类

kjthegm6  于 2022-11-04  发布在  其他
关注(0)|答案(1)|浏览(151)

我应该如何在ExtJS 6.2.1中的实用类中使用store?
在Grid组件中,您可以执行以下操作:

Ext.define('App.MyGrid', {
   extend : 'Ext.grid.Grid',
   store  : 'myStore',
});

如果我在课堂上这样做:

Ext.define('App.MyClass', {
   singleton : true,
   store     : 'myStore',
});

那么store就是一个字符串。

mutmk8jj

mutmk8jj1#

您可以用途:

Ext.StoreManager.lookup(STORE_NAME)

相关问题