gpt4 book ai didi

javascript - 如何用自定义函数替换javascript原型(prototype)

转载 作者:数据小太阳 更新时间:2023-10-29 04:25:18 26 4
gpt4 key购买 nike

// 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,'')

最佳答案

唯一可能的问题是你的代码被执行了两次,这会导致问题:真正的原始.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对象对于(原型(prototype))方法至关重要。

关于javascript - 如何用自定义函数替换javascript原型(prototype),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10057931/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com