Extjs 很恶心的错误,无法找原因,只有:TypeError: A[(intermediate value)] is not a constructor

时间:2021-06-23 19:43:54


解决方案:由于粘贴复制的时候把类型弄错误了xtype: 'partionname';修正为textfield就可以了

{

            fieldLabel: '报修部位',    
            xtype: 'partionname',
            id: 'partionname',
            value:'',
            width:280,
            allowDecimals: false,
            allowNegative: false,
            allowBlank: false,
            blankText: '不能为空'                        
        },{
            fieldLabel: '处理结果',    
            xtype: 'textfield',
            id: 'testresult',
            value:'',
            width:280,
            allowDecimals: false,
            allowNegative: false,
            allowBlank: false,
            blankText: '不能为空'                        
        }