setInterval 与 (this)

发布于 2024-10-19 18:35:35 字数 401 浏览 0 评论 0原文

请有人可以解释一下 setInterval 函数末尾的 (this) 的含义是什么:

function Klass(name) {
      this.name = name;
      this.handle = null;

      this.startTimer = function() {

        this.handle = setInterval(function(obj) {

          return(function() {
            alert(obj.name);
            });

          }(this), 5000); // <-------------------- (this)

      }

Please, someone can explain me what is the meaning of (this) at the end of the function in a setInterval :

function Klass(name) {
      this.name = name;
      this.handle = null;

      this.startTimer = function() {

        this.handle = setInterval(function(obj) {

          return(function() {
            alert(obj.name);
            });

          }(this), 5000); // <-------------------- (this)

      }

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

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

发布评论

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

评论(1

固执像三岁 2024-10-26 18:35:35

在构造中使用 this 的目的是为了在为执行的实际回调调用 setInterval 时保留 this 的含义在给定的间隔。如果没有手动保存,this 将在调用 setInterval 时成为函数的所有者。

这是关于这个主题的一篇非常好的文章

另一种可能更清晰的方法如下

var self = this
this.handle = setInterval(function() { alert(self.Name); }, 5000);

The use of this in the construct is intended to preserve the meaning of this at the point setInterval is called for the actual call back that is executed at the given interval. Without the manual preservation this would become the owner of the function at the point setInterval was called.

Here's a very nice article on this subject

Another way this could be done which may be a bit clearer is the following

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