JavaScript 中的别名方法链?

发布于 2024-09-04 15:18:49 字数 61 浏览 4 评论 0原文

在 JavaScript 中,如何创建一个与现有函数同名的新函数,同时保留原始函数以便可以从新函数中调用它?

In JavaScript, how could you create a new function with the same name as an existing function, while also preserving the original function so it could be called from within the new one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

失眠症患者 2024-09-11 15:18:49

您可以将原始函数传递给匿名函数,该函数返回可以访问原始函数的替换函数。

例如

parseInt = (function parseInt(original) {
    return function (x) {
        console.log("original would've returned " + original(x));

        // just random 'new' functionality
        return (x | 0) * 2;
    };
}(parseInt));

输出示例:

>> parseInt(10);
<< original would've returned 10
<< 20

You can pass the original function into an anonymous function which returns a replacement function which has access to the original function.

E.g.

parseInt = (function parseInt(original) {
    return function (x) {
        console.log("original would've returned " + original(x));

        // just random 'new' functionality
        return (x | 0) * 2;
    };
}(parseInt));

Example output:

>> parseInt(10);
<< original would've returned 10
<< 20
情绪失控 2024-09-11 15:18:49

您想要实现函数包装,请查看以下文章:

You want to implement function wrapping, check the following articles:

酒绊 2024-09-11 15:18:49

您可以简单地将旧函数分配给具有不同名称的变量:

var old_parseInt = parseInt;

function parseInt(s) {
   return old_parseInt(s) + 1;
}

You could simply assign the old function to a variable with a different name:

var old_parseInt = parseInt;

function parseInt(s) {
   return old_parseInt(s) + 1;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文