javascript AOP 实现ajax回调函数使用比较方便_javascript技巧
程序员文章站
2022-05-31 19:34:32
...
复制代码 代码如下:
function actsAsDecorator(object) {
object.setupDecoratorFor = function(method) {
if (! ('original_' + method in object) ) {
object['original_' + method] = object[method];
object['before_' + method] = [ ];
object['after_' + method] = [ ];
object[method] = function() {
var i;
var b = this['before_' + method];
var a = this['after_' + method];
var rv;
for (i = 0; i b[i].call(this, arguments);
}
rv = this['original_' + method].apply(this, arguments);
for (i = 0; i a[i].call(this, arguments);
}
return rv;
}
}
};
object.before = function(method, f) {
object.setupDecoratorFor(method);
object['before_' + method].unshift(f);
};
object.after = function(method, f) {
object.setupDecoratorFor(method);
object['after_' + method].push(f);
};
}
/**
Invoking
*/
function Test(){
this.say1 = function(s){
alert(s);
}
this.say2 = function(s){
alert(s);
}
}
var t = new Test();
actsAsDecorator(t);
t.before("say1",beforeHander);
t.after("say2",afterHander);
test();
推荐阅读
-
javascript AOP 实现ajax回调函数使用比较方便_javascript技巧
-
Javascript基于AJAX回调函数传递参数实例分析_javascript技巧
-
javascript AOP 实现ajax回调函数使用比较方便_javascript技巧
-
javascript实现网页子页面遍历回调的方法(涉及 window.frames、递归函数、函数上下文)_javascript技巧
-
Javascript基于AJAX回调函数传递参数实例分析_javascript技巧
-
javascript实现网页子页面遍历回调的方法(涉及 window.frames、递归函数、函数上下文)_javascript技巧