JavaScript面向切面编程

aop.js

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
// 统计一下当前的所有的函数谁耗时最长
function test() {
alert(2);
return 'me';
}

// 之前
Function.prototype.before = function (fn) {
var __self = this;
// before 回调和 before 送到after 去
return function () {
// this指向了调用的函数
// console.log(this); //window
if (fn(__self, arguments) == false) {
return false;
};
return __self.apply(__self, arguments);
}
}

// 之后
Function.prototype.after = function (fn) {
// after 先执行本身this 再执行回调
var __self = this;
// after 回调 和 after test 送到before 去
return function () {
var result = __self.apply(__self, arguments)
if (result == false) {
return false;
}
fn.apply(__self, arguments);
return result;
}
}

// 挂载__self=>test 执行before 回调 ,执行selft after自己执行回调
test.before(function () {
alert(1);
}).after(function () {
alert(3);
})();

// test.after(function () {
// alert(3);
// }).before(function () {
// alert(1);
// })();

// test.after(function () {
// alert(3);
// }).before(function () {
// alert(1);
// return false;
// })();

index.html

1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script src="aop.js"></script>
</body>
</html>