在 Chrome 中,JS 绑定函数具有空参数。callee.caller

发布于 2025-01-07 07:36:44 字数 355 浏览 0 评论 0原文

从 Chrome 17 开始,对于绑定函数来说,arguments.callee.caller 似乎为 null:

function a() {
  this.test = function() { console.debug('*** ' + arguments.callee.caller); };
  this.test();  // This prints the function
  this.bound = this.test.bind(this);
  this.bound(); // This prints null
}

绑定函数和未绑定函数过去的行为一致,但现在不再了。

这是预期的行为吗?

From Chrome 17 on, arguments.callee.caller seems to be null for bound functions:

function a() {
  this.test = function() { console.debug('*** ' + arguments.callee.caller); };
  this.test();  // This prints the function
  this.bound = this.test.bind(this);
  this.bound(); // This prints null
}

The bound and unbound functions used to act consistently, but not anymore.

Is this expected behavior?

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

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

发布评论

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

评论(2

漆黑的白昼 2025-01-14 07:36:44

也许这不是一个错误。您可能会注意到这一点:
如果函数 f 是由顶层代码调用的,则 f.caller 的值为 null,否则是调用 f 的函数。 MDN

当你在函数 a 中使用 this 时,'this' 表示 DOMWindow.因此,当您将绑定函数绑定到 this 时,绑定函数将由顶层代码调用。它返回null

愿它有帮助。 rdtriny。

Maybe it's not an error. You may note this:
If the function f was invoked by the top level code, the value of f.caller is null, otherwise it's the function that called f. MDN

And when you use this in function a, 'this' means DOMWindow. so When you bind bound function to this, bound function was invoked by the top level code. It returns null.

May it helps. rdtriny.

月竹挽风 2025-01-14 07:36:44

arguments.callee 和 company 已弃用。他们在严格模式下抛出错误。我的猜测是它们将在新版本的 Chrome 中被淘汰。但我无法确认,因为我还不到 16 岁。

arguments.callee and company are deprecated. They throw errors in strict mode. My guess is that they are being phased out in newer versions of Chrome. I can't confirm, though, because I'm still on 16.

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