-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaopByPrototype.html
84 lines (74 loc) · 3.27 KB
/
aopByPrototype.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<title>扩展Function.prototype实现AOP(面向切面编程)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
</head>
<body>
<p>AOP(面向切面编程)的主要作用是把一些跟核心业务逻辑模块无关的功能抽离出来,这些跟业务逻辑无关的功能通常包括日志统计、安全控制、异常处理等。
把这些功能抽离出来之后,再通过“动态织入”的方式掺入业务逻辑模块中。
这样做的好处首先是可以保持业务逻辑模块的纯净和高内聚性,其次是可以很方便地复用日志统计等功能模块。
在Java语言中,可以通过反射和动态代理机制来实现AOP技术。
而在JavaScript这种动态语言中,AOP的实现更加简单,这是JavaScript与生俱来的能力。
通常,在JavaScript中实现AOP,都是指把一个函数“动态织入”到另外一个函数之中,具体的实现技术有很多,本节我们通过扩展Function.prototype来做到这一点。代码如下:</p>
<pre>
function myLog(w) {
console.log("myLog:" + w);
}
Function.prototype.before = function (beforefn) {
var __self = this; // 保存原函数的引用
return function () { // 返回包含了原函数和新函数的"代理"函数
beforefn.apply(this, arguments);// 执行新函数,修正this
return __self.apply(this, arguments); // 执行原函数
}
};
Function.prototype.after = function (afterfn) {
var __self = this;
return function () {
var ret = __self.apply(this, arguments);
afterfn.apply(this, arguments);
return ret;
}
};
var func = function () {
console.log("running");
};
func = func.before(function () {
myLog("before function")
}).after(function () {
myLog("after function")
});
func();
</pre>
<script>
function myLog(w) {
console.log("myLog:" + w);
}
Function.prototype.before = function (beforefn) {
var __self = this; // 保存原函数的引用
return function () { // 返回包含了原函数和新函数的"代理"函数
beforefn.apply(this, arguments);// 执行新函数,修正this
return __self.apply(this, arguments); // 执行原函数
}
};
Function.prototype.after = function (afterfn) {
var __self = this;
return function () {
var ret = __self.apply(this, arguments);
afterfn.apply(this, arguments);
return ret;
}
};
var func = function () {
console.log("running");
};
func = func.before(function () {
myLog("before function")
}).after(function () {
myLog("after function")
});
func();
</script>
</body>
</html>