如何在 Extjs 中调用附加到商店的模型

How can I call the model attached to the store in Extjs

我有一个简单的extjs问题,我不知道如何解决。

问题是:

例如:var store = Ext.getStore('myproject.store.City');

这个简单的方法。

我想对模型做同样的事情

例如:var model = Ext.getModel('myproject.model.City')

但这行不通。

如何调用店铺附带的模型?

我找到了解决方法。

遵循代码:var model = Ext.create('myproject.model.City')