什么是装饰者模式

函数式例子:

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
//Example 1
Function.prototype.before = function(beforeFn) {
let self = this;
return function() {
beforeFn.apply(this, arguments);
self.apply(this, arguments);
}
}

Function.prototype.after = function(afterFn) {
let self = this;
return function() {
self.apply(this, arguments);
afterFn.apply(this, arguments);
}
}


//Example 2
let a = function() {
alert(1);
}

let _a = a;

a = function() {
_a();
alert(2);
}

//Example 3
window.onload = function() {
alert(1);
}

let onload = window.onload;

window.onload = function() {
onload();
alert(2);
}