7
// I am trying to make a clone of String's replace function
// and then re-define the replace function (with a mind to
// call the original from the new one with some mods)
String.prototype.replaceOriginal = String.prototype.replace
String.prototype.replace = {}

下一行现在坏了 - 我该如何修复?

"lorem ipsum".replaceOriginal(/(orem |um)/g,'')
4

1 回答 1

25

唯一可能的问题是您的代码执行了两次,这会导致问题:真正的原始代码.replace将消失。

为避免此类问题,我强烈建议使用以下通用方法替换内置方法:

(function(replace) {                         // Cache the original method
    String.prototype.replace = function() {  // Redefine the method
        // Extra function logic here
        var one_plus_one = 3;
        // Now, call the original method
        return replace.apply(this, arguments);
    };
})(String.prototype.replace);
  • 这允许在不破坏现有功能的情况下进行多种方法修改
  • 上下文由以下方式保存.apply():通常,this对象对于(原型)方法至关重要。
于 2012-04-07T20:13:21.210 回答