我有这个代码:
targetMu: function(programmeCode, muId) {
//Parameter values are fine here
targetMuController.targetMuView.on("targetMu:afterRender", function(programmeCode, muId) {
this.renderCustomWidgets(muId, programmeCode);
});
}
什么时候this.renderCustomWidgets(muId, programmeCode)
被解雇,programmeCode
&muId
是未定义的,为什么?
我该如何解决这个问题?