function bind(cb, component) {
component.on('destroy', function() {
cb = component = undefined;
}
return function() {
if (cb && component)
cb.apply(component, arguments);
};
}
其中的component.on('destroy', function() {...}) 有这种事件接口吗?
function bind(cb, component) {
component.on('destroy', function() {
cb = component = undefined;
}
return function() {
if (cb && component)
cb.apply(component, arguments);
};
}
其中的component.on('destroy', function() {...}) 有这种事件接口吗?