出處:https://www.cnblogs.com/zengyuanjun/p/7429968.html /** * @desc 面向aop編程 * @param {Function} originFunc - 源方法 * @param {Function} before - 在源代碼執行之前的方 ...
出處:https://www.cnblogs.com/zengyuanjun/p/7429968.html
/** * @desc 面向aop編程 * @param {Function} originFunc - 源方法 * @param {Function} before - 在源代碼執行之前的方法體 * @param {Function} after - 在源代碼執行之後的方法體 */ function constructor(originFunc, before, after) { return function() { before.apply(this, arguments); originFunc.apply(this, arguments); after.apply(this, arguments); } } function calcAdd(a, b) { console.log(a+b); return a + b; } // AOP增強 calcAdd = constructor(calcAdd, function() { console.log('add before'); }, function() { console.log('add after'); }); // 要求依次執行 add before 5 add after calcAdd(2, 3);
// AOP 工廠模式
var aopFactory = function(before, after) { // 構造方法,在原方法前後增加執行方法 function constructor(originFun){ function _class(){ proxy.before.apply(this, arguments); originFun.apply(this, arguments); proxy.after.apply(this, arguments); } return _class; } // 代理對象,a為被代理方法,b為目標對象 var proxy = { add: function(a, b) { var fnName = ''; if (typeof a === 'function') { fnName = a.name; } else if (typeof a === 'string') { fnName = a; } else { return; } // 不傳對象的話預設為window b = b || window; if (typeof b === 'object' && b[fnName]) { b[fnName] = constructor(b[fnName]); } }, before: function() { }, after: function() { } }; if (typeof before === 'function') { proxy['before'] = before; } if (typeof after === 'function') { proxy['after'] = after; } return proxy; } var printProxy, checkProxy; // 列印參數 function printArguments(){ for(var i = 0; i < arguments.length; i++){ console.info("param" + (i + 1) + " = " + arguments[i]); } } // 列印和 function printSum() { var sum = 0; for(var i = 0; i < arguments.length; i++){ sum += arguments[i]; } console.log('和', sum); } // 傳入一個列印參數的AOP前增強 printProxy = aopFactory(printArguments, printSum); function calcAdd(a, b) { return a + b; } // 傳入需要增強的原方法 printProxy.add(calcAdd); calcAdd(1, 2);