例如,以下代码:
this.notifyClosed=function(){this.trigger("uiSigninOrSignupDialogClosed")},
this.on(this.$node,"uiDialogClosed",this.notifyClosed) // <- what is the benefit of calling a function which is only to forward the event with another event name?
为了澄清,第二行“uiDialogClosed”中的事件名称也在该类(包括第一行)中定义。那么,编码器这样做的步骤
执行这些操作的好处是什么,而不仅仅是在步骤(1)中触发事件名称(b)?
源代码参考:
https://abs.twimg.com/c/swift/en/init.c55682c6beb3d82a7317d5287646278649c9e765.js
在上面的源代码中搜索'this.notifyClosed'。该源代码中只有2次出现。这恰恰解释了我的问题。