javasctiptは高次関数でAOPを実現します.

3241 ワード

JSでAOPを実現するのは、一つの関数を別の関数に動的に入れることです.

<html>
<head>
    <title>title>
head>
<body>
AOP  
<script type="text/javascript">


Function.prototype.before = function(beforefn){
    var _self = this;
    return function(){
        beforefn.apply(this,arguments);   //   before  
        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);    //   after  
        return ret;
    }
};

var func = function(){
    console.log('helloWorld!');
}
func = func.before(function(){
    console.log("1")
}).after(function(){
    console.log("2")
})

func();
script>
body>
html>