ejyoo's 개발 노트

Cannot read properties of undefined (reading 'length') 본문

FrontEnd/Ext

Cannot read properties of undefined (reading 'length')

ejyoovV 2022. 8. 23. 08:54

Cannot read properties of undefined (reading 'length')

 

* 발생원인

- initComponent 후 this.callParent(arguments)를 안함.

initComponent: function () {
  	// 코드 작성
	this.callParent(arguments);
}