JavaScript AOP programming example

Source: Internet
Author: User

JavaScript AOP programming example

This example describes JavaScript AOP programming. Share it with you for your reference. The details are as follows:

?

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

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

/*

// Aop ({options });

// By: adamchow2326@yahoo.com.au

// Version 1.0

// Simple aspect oriented programming module

// Support Aspect before, after and around

// Usage:

Aop ({

Context: myObject, // scope context of the target function.

Target: "test", // target function name

Before: function () {// before function will be run before the target function

Console. log ("aop before ");

},

After: function () {// after function will be run after the target function

Console. log ("aop after ");

},

Around: function () {// around function will be run before and after the target function

Console. log ("aop around ");

}

});

*/

Var aop = (function (){

Var options = {},

Context = window,

OFn,

OFnArg,

TargetFn,

TargetFnSelector,

BeforeFn,

AfterFn,

AroundFn,

CloneFn = function (Fn ){

If (typeof Fn = "function "){

Return eval ('[' + Fn. toString () + ']') [0];

}

Return null;

},

CheckContext = function (){

If (options. context ){

Context = options. context;

}

If (typeof context(options.tar get). name] = "function "){

TargetFnSelector = (options.tar get). name;

TargetFn = context [targetFnSelector];

}

Else if (typeof context=options.tar get] = "function "){

TargetFnSelector = options.tar get;

TargetFn = context [targetFnSelector];

}

If (targetFn ){

OFn = cloneFn (targetFn );

OFnArg = new Array (targetFn. length );

Return true;

}

Else {

Return false;

}

},

Run = function (){

Context [targetFnSelector] = function (oFnArg ){

If (aroundFn ){

AroundFn. apply (this, arguments );

}

If (beforeFn ){

BeforeFn. apply (this, arguments); // 'shanghai' is context

}

OFn. apply (this, arguments );

If (afterFn ){

AfterFn. apply (this, arguments); // 'easy' is context

}

If (aroundFn ){

AroundFn. apply (this, arguments );

}

};

};

Return function (opt ){

If (opt & typeof opt = "object "&&! Opt. length ){

Options = opt;

If (options.tar get & checkContext ()){

If (options. before & typeof options. before = "function "){

BeforeFn = options. before;

}

If (options. after & typeof options. after = "function "){

AfterFn = options. after;

}

If (options. around & typeof options. after = "function "){

AroundFn = options. around;

}

Run ();

}

}

};

})();

// Test examples

// ----------------- Aop modify global function ---------------//

Function test (name, age ){

Console. log ("test fn. name =" + name + "age:" + age );

}

Aop ({

Target: "test ",

Before: function (){

Console. log ("aop before ");

},

After: function (){

Console. log ("aop after ");

},

Around: function (){

Console. log ("aop around ");

}

});

// Run

Test ("adam", 6 );

// ----------------- Aop test modify method in an object ---------------//

Var myobj = {

MyName: "testName ",

SayName: function (){

Console. log (this. myName );

},

ChildObj :{

Age: 6,

Say: function (){

Console. log (this. age );

}

}

};

Aop ({

Context: myobj,

Target: "sayName ",

Before: function (){

Console. log ("aop before say name =" + this. myName );

},

After: function (){

Console. log ("aop after say name =" + this. myName );

},

Around: function (){

Console. log ("aop around say name =" + this. myName );

}

});

// Run

Myobj. sayName ();

Aop ({

Context: myobj. childObj,

Target: "say ",

Before: function (){

Console. log ("aop before say name =" + this. age );

},

After: function (){

Console. log ("aop after say name =" + this. age );

},

Around: function (){

Console. log ("aop around say name =" + this. age );

}

});

Myobj. childObj. say ();

I hope this article will help you design javascript programs.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.