将代码附加到现有函数的末尾

时间:2012-06-27 08:54:10

标签: javascript eval

每当函数foo()触发时我都需要触发函数bar()。我无法控制函数foo或将来是否会改变。我经常遇到这种情况(我讨厌它)。

我编写了这个函数,将我的代码添加到函数foo的末尾:

function appendToFunction(fn,code){ 
if(typeof fn == 'function'){
    var fnCode = fn.toString() ;
    fnCode = fnCode.replace(/\}$/,code+"\n}") ;
    window.eval(fnCode);                    // Global scope
    return true ;
}
else{
    return false ;
}
}

例如:

appendToFunction(foo,"bar();");

这对我来说是一个可怕的想法 - 但它确实有效。有人可以指出我更好(更安全)的方向。

编辑:foo不是一个特定的功能,但我最终处理的功能很多。它们不会在页面中动态更改。但它们可能会不时发生变化(例如形式验证要求)。

解决方案: 我选择了Adam的答案的修改版本。它并不完美,但它比我的更好:

var oldFoo = foo ;
foo = function(){
        var result = oldFoo.apply(this, arguments);
        bar();
        return result ;
}

NB。注意IE6 / 7中没有.apply()方法的一些本机函数。

5 个答案:

答案 0 :(得分:30)

您可以使用调用原始函数的自定义函数覆盖foo

E.g。

var old_foo = foo;
foo = function() {
  old_foo();
  bar();
}

您还应该通过替换函数传递任何参数foo

答案 1 :(得分:6)

function extend(fn,code){
  return function(){
    fn.apply(fn,arguments)
    code.apply(fn,argumnets)
  }
}

并像这样使用它:

function appendToFunction(fn,code){ 
    if(typeof fn == 'function'){
        var fnCode = fn.toString() ;
        fnCode = fnCode.replace(/\}$/,code+"\n}") ;
        window.eval(fnCode);                    // Global scope
        return true ;
    }
    else{
        return false ;
    }
}

appendToFunction = extend(appendToFunction,function(){/*some code*/});

这将在两个函数

中提供相同的“this”

答案 2 :(得分:6)

您可以执行以下操作: THE DEMO

function foo() {
 console.log('foo');
}

function appendToFunction(fn, callback) {
  window[fn] = (function(fn){
    return function() {
      fn();
      callback();
    }
 }(window[fn]));
}

appendToFunction('foo', function(){console.log('appended!')});

foo();

答案 3 :(得分:3)

嗯,这也关系到我,你提到了

  

我经常遇到这种情况(我讨厌它)。

你介意我问一下这种情况会持续发生吗?它是在公司范围内,还是在个人项目范围内?你显然已经掌握了一个水平的头,知道你正在做的事情是不同寻常的,所以我想知道是否有一个替代解决方案。

我问的原因是;这种方法可能会引发一系列问题。如果foo失败,或者foo在评估中间返回值,该怎么办?只需将bar附加到实际函数,就不能保证它会执行。另一方面预先处理它意味着它可能会被执行更多,但在我看来仍然不是一个好方法。

您是否考虑修改功能foo?我知道这可能看起来像一个愚蠢的问题,但如果你遇到类似的问题,它可能是值得的。如果你想保持抽象的东西,你可以采用“事件处理程序”方法,foo触发window上的事件,然后触发bar,这会在你的工作中发挥作用情况下。

或者,如果您知道foo是什么以及它做了什么,如果它是一个对象,您可以挂钩它的原型,然后适当地修改代码。但是你提到这个功能是可以改变的,这可能会使这个选项变得多余,但它仍然是一个可能的解决方案。

答案 4 :(得分:1)

您可以使用例如合并将现有功能附加或添加到现有功能中,例如:

function mergeFunctions(function1, function2, instance1, instance2, numberOfArgumentsToPassToFunc1) {
    return function() {
        var _arguments  = Array.prototype.slice.apply(arguments);
        var _arguments1 = _arguments.slice(0, numberOfArgumentsToPassToFunc1);
        var _arguments2 = _arguments.slice(numberOfArgumentsToPassToFunc1);
        var that = this;
        (function(function1, function2) {
            if (typeof function1 == "function") {
                if (typeof instance1 != "undefined") {
                    function1.apply(instance1, _arguments1);
                }
                else if (that == window) {
                    function1.apply(function1, _arguments1);
                }
                else {
                    var compare = mergeFunctions(function(){}, function(){});
                    if (that.toString() == compare.toString()) {
                        function1.apply(function1, _arguments1);
                    }
                    else {
                        function1.apply(that, _arguments1);
                    }
                }
            }
            if (typeof function2 == "function") {
                if (typeof instance2 != "undefined") {
                    function2.apply(instance2, _arguments2);
                }
                else if (that == window) {
                    function2.apply(function2, _arguments2);
                }
                else {
                    var compare = mergeFunctions(function(){}, function(){});
                    if (that.toString() == compare.toString()) {
                        function2.apply(function2, _arguments2);
                    }
                    else {
                        function2.apply(that, _arguments2);
                    }
                }
            }
        })(function1, function2);
    }
}



基本示例将是以下内容:

// Original function:
var someFunction = function(){
    console.log("original content");
};

// Prepend new code:
// --------------------------------------------------------
someFunction = mergeFunctions(function() {
    console.log("--- prepended code");
}, someFunction);

// Testing:
someFunction();

// Outout:
// [Log] --- prepended code
// [Log] original content


// Append new code:
// --------------------------------------------------------
someFunction = mergeFunctions(someFunction, function() {
    console.log("appended code");
});

// Testing:
someFunction();

// Output:
// [Log] --- prepended code
// [Log] original content
// [Log] appended code



注意合并函数试图将预期的'this'应用于合并的部分,否则你只需简单地将想要的'this'传递给它们,你就可以处理相对的参数。登记/> 更一般的示例可能如下:

function firstPart(a, b) {
    console.log("--- first part");
    console.log("'this' here is:");
    console.log(this.name);
    console.log("a: "+a);
    console.log("b: "+b);
}

function MyObject() {
    this.x = "x property of MyObject";
}

MyObject.prototype.secondPart = function (y) {
    console.log("");
    console.log("--- second part");
    console.log("'this' here is:");
    console.log(this.name);
    this.x = y;
    console.log("x: "+this.x);
}

MyObject.prototype.merged = mergeFunctions(firstPart, MyObject.prototype.secondPart, firstPart, MyObject, 2);

// Testing
var test = new MyObject();
test.merged("a parameter", "b parameter", "x parameter overrides x property of MyObject");

// Console output:
// [Log] --- first part
// [Log] 'this' here is:
// [Log] firstPart
// [Log] a: a parameter
// [Log] b: b parameter
// [Log] 
// [Log] --- second part
// [Log] 'this' here is:
// [Log] MyObject
// [Log] x: x parameter overrides x property of MyObject