NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/util/lib/event/wrap-behavior.js

19 lines
478 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
/**
* 封装事件便于使用上下文this,和便于解除事件时使用
* @protected
* @param {Object} obj 对象
* @param {String} action 事件名称
* @return {Function} 返回事件处理函数
*/
function wrapBehavior(obj, action) {
if (obj['_wrap_' + action]) {
return obj['_wrap_' + action];
}
var method = function method(e) {
obj[action](e);
};
obj['_wrap_' + action] = method;
return method;
}
module.exports = wrapBehavior;