有人可以帮我解决我的问题吗?
我创建了一个模型并将别名设置为该模型,并在其中使用相同Ext.data.store
的别名并将模型设置为别名,但它不起作用,但使用模型的完整名称它可以工作。为什么?
Ext.define('lancet.asset.system.combobox.models.PathwayModel', { extend: 'lancet.def.system.model.Model', alias: 'widget.pathwaymodel', fields: [ { name: 'Id', type: 'string' }, { name: 'Name', type: 'string' }, { name: 'group', type: 'string' } ] });
Ext.create('Ext.data.Store', { model: 'lancet.asset.system.combobox.models.PathwayModel',//it's work autoLoad: true }
Ext.create('Ext.data.Store',{ model:'PathwayModel',//it doesn't work autoLoad:true}