0
任何人都可以幫我解決我的問題嗎?在Ext.data.store中使用別名
我已經創建了一個模型,並將別名設置爲該模型,並在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}