发布网友 发布时间:2022-04-24 05:58
共1个回答
热心网友 时间:2022-04-08 01:27
[javascript] view plain copy
Ext.require('Ext.*');
Ext.onReady(function () {
//定义ComboBox模型
Ext.define('State', {
extend: 'Ext.data.Model',
fields: [
{ type: 'int', name: 'id' },
{ type: 'string', name: 'cname' }
]