我的控制器有问题
Ext.define('app.controller.myController', {
init: function() {
this.control({
'#myinputfield': {
change: this.textFieldChange(parameter)
}
})
},
textFieldChange: function(parameter) {
//do something
}
});
它看起来像这样问题是当我在这里给出参数时
change: this.textFieldChange(parameter)
然后它在网站加载后启动,我不知道为什么。
没有参数它等待更改事件应该可以帮助我吗?