gpt4 book ai didi

javascript - 方法 Set.prototype.add 在不兼容的接收器上调用 undefined

转载 作者:可可西里 更新时间:2023-11-01 02:37:36 25 4
gpt4 key购买 nike

我根本不明白为什么会出现这个错误。

这是我在 chrome 的控制台上测试的内容:

>    var mySet;
<- undefined

> mySet = new Set;
<- Set {}

> mySet.add('foo', 'bar', 'baz') // Worked as expected
<- Set {"foo"} // just the first argument was added

> ['bar', 'baz'].forEach(mySet.add)
X-> VM1529:1 Uncaught TypeError:
Method Set.prototype.add called on incompatible receiver undefined(…)

提前致谢。

最佳答案

在这种情况下,当您将 add 方法作为回调传递时,它会丢失其内部 this 上下文,因此您需要使用 bind:

['bar', 'baz'].forEach(mySet.add.bind(mySet));

['bar', 'baz'].forEach((item) => mySet.add(item));

关于javascript - 方法 Set.prototype.add 在不兼容的接收器上调用 undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37199019/

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