eventsListened.forEach(elt => { optionsAdded["on" + elt] = delegateAndEmit.call(this, elt); });
const eventsListened = ["Start", "Add", "Remove", "Update", "End"];
function delegateAndEmit(evtName) { return evtData => { if (this.realList !== null) { this["onDrag" + evtName](evtData); } emit.call(this, evtName, evtData); }; }
原文:https://www.cnblogs.com/TTblog5/p/13122025.html